Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2016-06-24 12:44:30 +0000
committerDavid Williams2016-06-24 12:44:30 +0000
commit123cf5e075af71b6cb2e624378a5ee5acb9299da (patch)
treeceab0cd817f35bb6a3e8559a63b9cb4aa223e12d /production/miscToolsAndNotes
parent1bf98ea4ffae07847ec964c5f6b11a899cc6a792 (diff)
downloadeclipse.platform.releng.aggregator-123cf5e075af71b6cb2e624378a5ee5acb9299da.tar.gz
eclipse.platform.releng.aggregator-123cf5e075af71b6cb2e624378a5ee5acb9299da.tar.xz
eclipse.platform.releng.aggregator-123cf5e075af71b6cb2e624378a5ee5acb9299da.zip
Bug 496698 - "Abort the build if it's stuck" continues to run if periodic build if cancelled and restarted
Diffstat (limited to 'production/miscToolsAndNotes')
-rwxr-xr-xproduction/miscToolsAndNotes/test496698/runFor10Minutes.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/production/miscToolsAndNotes/test496698/runFor10Minutes.sh b/production/miscToolsAndNotes/test496698/runFor10Minutes.sh
index 55fb14282..963c573ed 100755
--- a/production/miscToolsAndNotes/test496698/runFor10Minutes.sh
+++ b/production/miscToolsAndNotes/test496698/runFor10Minutes.sh
@@ -4,7 +4,7 @@ max=10
count=1
echo -e "\n\tScript that runs for $max minutes: Loop $count of $max\n"
sleep 1m
-count=$((count + 1)
+count=$((count + 1))
if [[ $count >= $max ]]
then
exit 0

Back to the top