From 7076b92af43876c539e8052db201bb34353b03f9 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Thu, 27 Apr 2017 09:01:47 -0400 Subject: [PATCH] fix if on exit status of build --- utils/do_debian_package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/do_debian_package.sh b/utils/do_debian_package.sh index a018a1a4d..e647232f2 100755 --- a/utils/do_debian_package.sh +++ b/utils/do_debian_package.sh @@ -217,7 +217,7 @@ if [ "$DEBSIGN_KEYID" != "" ]; then DEBUILD="$DEBUILD -k$DEBSIGN_KEYID" fi $DEBUILD -if [ "$?" != "0" ]; then +if [ $? -ne 0 ]; then echo "Error status code is: $?" echo "Build failed."; exit $?;