Cirrus: Ignore any error from the IRC messenger

Signed-off-by: Chris Evich <cevich@redhat.com>
This commit is contained in:
Chris Evich 2018-11-08 13:51:36 -05:00
parent 85dbfb33f4
commit 916a3ba9d1
No known key found for this signature in database
GPG Key ID: 03EDC70FD578067F
1 changed files with 3 additions and 0 deletions

View File

@ -106,7 +106,10 @@ ircmsg() {
SCRIPT="$GOSRC/$SCRIPT_BASE/podbot.py" SCRIPT="$GOSRC/$SCRIPT_BASE/podbot.py"
NICK="podbot_$CIRRUS_TASK_ID" NICK="podbot_$CIRRUS_TASK_ID"
NICK="${NICK:0:15}" # Any longer will break things NICK="${NICK:0:15}" # Any longer will break things
set +e
$SCRIPT $NICK $1 $SCRIPT $NICK $1
echo "Ignoring exit($?)"
set -e
} }
# Run sudo in directory with GOPATH set # Run sudo in directory with GOPATH set