diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-11-08 18:06:38 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-08 18:06:38 -0800 |
commit | ada55ab7e03cfc4b1d20bd61c7b131c5bf303b62 (patch) | |
tree | b2f4bde46ac07fc7ef59c63f034368a9d00dc5b3 | |
parent | c611db2bc08df6bca8a921852998c842dae4f2cb (diff) | |
parent | 916a3ba9d14d436ea4c68660c33b35d51a8ddee6 (diff) | |
download | podman-ada55ab7e03cfc4b1d20bd61c7b131c5bf303b62.tar.gz podman-ada55ab7e03cfc4b1d20bd61c7b131c5bf303b62.tar.bz2 podman-ada55ab7e03cfc4b1d20bd61c7b131c5bf303b62.zip |
Merge pull request #1784 from cevich/cirrus_ignore_irc
Cirrus: Ignore any error from the IRC messenger
-rw-r--r-- | contrib/cirrus/lib.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/cirrus/lib.sh b/contrib/cirrus/lib.sh index 2fa91258b..4a3efb8ff 100644 --- a/contrib/cirrus/lib.sh +++ b/contrib/cirrus/lib.sh @@ -106,7 +106,10 @@ ircmsg() { SCRIPT="$GOSRC/$SCRIPT_BASE/podbot.py" NICK="podbot_$CIRRUS_TASK_ID" NICK="${NICK:0:15}" # Any longer will break things + set +e $SCRIPT $NICK $1 + echo "Ignoring exit($?)" + set -e } # Run sudo in directory with GOPATH set |