diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-04-27 15:40:15 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-04-27 15:40:15 +0200 |
commit | 3986bab031335da16f9043a0b46d18357fcd0c9f (patch) | |
tree | 81bf1329e6601ea4c7c60751a4373d45cc8c0ca1 | |
parent | 0716600e414d83afae6c0049513e1ae959dc8473 (diff) | |
download | jenkins.debian.net-3986bab031335da16f9043a0b46d18357fcd0c9f.tar.xz |
reproducible Debian: no results are ok
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_build_service.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build_service.sh b/bin/reproducible_build_service.sh index f6245160..4a46d332 100755 --- a/bin/reproducible_build_service.sh +++ b/bin/reproducible_build_service.sh @@ -222,7 +222,7 @@ startup_workers() { # WORKER_NAME=${ARCH}_$i WORKER_BIN=/srv/jenkins/bin/reproducible_worker.sh - RUNNING=$(ps fax|grep -v grep|grep "$WORKER_BIN $WORKER_NAME") + RUNNING=$(ps fax|grep -v grep|grep "$WORKER_BIN $WORKER_NAME" 2>/dev/null||true) if [ ! -z "$RUNNING" ] ; then echo "$(date --utc) - '$(basename $WORKER_BIN) $WORKER_NAME' already running, thus moving on to the next." continue |