diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-16 09:57:58 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-16 09:57:58 +0200 |
commit | efe1358e0212cc1dfc8ba7f0f4e48d3e2c675257 (patch) | |
tree | cc5d312807b12b9aca9841607e5931a70ab18c14 /bin | |
parent | ee78cf7b74ea65e6d56faf121b93461041673e95 (diff) | |
download | jenkins.debian.net-efe1358e0212cc1dfc8ba7f0f4e48d3e2c675257.tar.xz |
reproducible: fix typos
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/jenkins_master_wrapper.sh | 2 | ||||
-rwxr-xr-x | bin/reproducible_build.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/jenkins_master_wrapper.sh b/bin/jenkins_master_wrapper.sh index 12dcb142..f7eaaf4a 100755 --- a/bin/jenkins_master_wrapper.sh +++ b/bin/jenkins_master_wrapper.sh @@ -36,7 +36,7 @@ set +e ssh -p $PORT $NODE_NAME /bin/true RESULT=$? # abort job if host is down -if [ $RESULT -ne 0 ] then +if [ $RESULT -ne 0 ] ; then echo "$(date -u) - $NODE_NAME seems to be down, sleeping 15min before aborting this job." sleep 15m /srv/jenkins/bin/abort.sh diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index cb8fd6f7..da3a9f4b 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -538,7 +538,7 @@ remote_build() { ssh -p $PORT $NODE /bin/true RESULT=$? # abort job if host is down - if [ $RESULT -ne 0 ] then + if [ $RESULT -ne 0 ] ; then echo "$(date -u) - $NODE seems to be down, sleeping 23min before aborting this job." sleep 23m /srv/jenkins/bin/abort.sh |