mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 17:35:35 +02:00
fix bug on DIRS line that was causing the tail end of the build to be skipped
This commit is contained in:
parent
20a15b6202
commit
0ad1200644
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ fi
|
|||
|
||||
#Check the publishing
|
||||
cd $HOME/ws2/publish
|
||||
DIRS=`ls -t ${buildType}*${daystamp}* | head -1 2>/dev/null`
|
||||
DIRS=`ls -dt ${buildType}*${daystamp}* | head -1 2>/dev/null`
|
||||
cd ${DIRS}
|
||||
FILES=`ls RSE-SDK-*.zip 2>/dev/null`
|
||||
echo "FILES=$FILES"
|
||||
|
|
Loading…
Add table
Reference in a new issue