From c068f3343e0499992042b51160b4f5cb5aa64bd7 Mon Sep 17 00:00:00 2001 From: Brian Harring Date: Sun, 23 Dec 2012 04:00:29 -0800 Subject: [PATCH] git-exproll.sh: Return nonzero on errors. This script needs a bit more analysis to make sure all pathways are covered, but this CL fixes an obvious path. Change-Id: I2a8404b7a6eecd5cedba3daa20f63917a8d18482 --- contrib/git-exproll.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/git-exproll.sh b/contrib/git-exproll.sh index 9526d9ff78..066c57cb2c 100644 --- a/contrib/git-exproll.sh +++ b/contrib/git-exproll.sh @@ -126,7 +126,7 @@ EOF [ -n "$1" ] && info "ERROR $1" - exit + exit 128 } debug() { [ -n "$SW_V" ] && info "$1" ; }