From 32af6b09d6d9a21a365666c2dfe754e1ad13fd3a Mon Sep 17 00:00:00 2001 From: Tom Jorquera Date: Fri, 13 Jan 2017 16:55:45 +0100 Subject: [PATCH] Change default return value of install_sacc.sh The install script for SAcC was returning an error code of 1 on a successfull install. Change it to the more "standard" return value of 0. Fixes #1336. --- tools/extras/install_sacc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/extras/install_sacc.sh b/tools/extras/install_sacc.sh index ff78506500d..4c55a76a6a0 100755 --- a/tools/extras/install_sacc.sh +++ b/tools/extras/install_sacc.sh @@ -71,4 +71,4 @@ cd SAcC_GLNXA64 && echo "**Error testing SAcC-- something went wrong." && exit 1; echo "Test succeeded." -exit 1; +exit 0;