From 0ad12006445c0035829e84cc405c795a7c158334 Mon Sep 17 00:00:00 2001 From: David Dykstal Date: Mon, 11 Jun 2007 18:31:52 +0000 Subject: [PATCH] fix bug on DIRS line that was causing the tail end of the build to be skipped --- releng/org.eclipse.rse.build/bin/doit_irsbuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releng/org.eclipse.rse.build/bin/doit_irsbuild.sh b/releng/org.eclipse.rse.build/bin/doit_irsbuild.sh index 4008519ea67..03554272774 100755 --- a/releng/org.eclipse.rse.build/bin/doit_irsbuild.sh +++ b/releng/org.eclipse.rse.build/bin/doit_irsbuild.sh @@ -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"