commit | 5df681819ab58413a7c65d147bb9e4e8c72adcf9 | [log] [tgz] |
---|---|---|
author | Anthony Young <sleepsonthefloor@gmail.com> | Thu Nov 10 09:56:12 2011 -0800 |
committer | Anthony Young <sleepsonthefloor@gmail.com> | Thu Nov 10 09:56:12 2011 -0800 |
tree | c1d9f9bb31b14e49e08dc7ac480c8a501699cc44 | |
parent | ec38c40a4dc70206e4cf7a4e43362e986555df42 [diff] [blame] |
fix typo in job iteration
diff --git a/tools/jenkins/jenkins_home/build_jenkins.sh b/tools/jenkins/jenkins_home/build_jenkins.sh index abbdfd1..567a056 100755 --- a/tools/jenkins/jenkins_home/build_jenkins.sh +++ b/tools/jenkins/jenkins_home/build_jenkins.sh
@@ -42,7 +42,8 @@ EOF # Add build numbers -for job in ${`ls jobs`// / }; do +JOBS=`ls jobs` +for job in ${JOBS// / }; do if [ ! -e jobs/$job/nextBuildNumber ]; then echo 1 > jobs/$job/nextBuildNumber fi