aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJim Flynn <jim.flynn@arm.com>2019-04-11 13:10:46 +0100
committerJim Flynn <jim.flynn@arm.com>2019-04-11 13:10:46 +0100
commit774f6f1d7c862fc2b8e1783abef9a0bccdaf9d0c (patch)
treea91cea1aa31aa35d74cecf81c4c7960a5f4dcc85 /scripts
parent7c23b33eeb8935c78325db5406e34380583fdb1a (diff)
downloadarmnn-774f6f1d7c862fc2b8e1783abef9a0bccdaf9d0c.tar.gz
IVGCVSW-2912 Change get_compute_libary.sh -p exit code to 0
Change-Id: Id53d32f07c2c555d4ed86bcba31a860a698ff3e9 Signed-off-by: Jim Flynn <jim.flynn@arm.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/get_compute_library.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/get_compute_library.sh b/scripts/get_compute_library.sh
index 6ad98ca1b6..f3d1a8cb19 100755
--- a/scripts/get_compute_library.sh
+++ b/scripts/get_compute_library.sh
@@ -16,12 +16,12 @@ usage() {
echo "Usage: $CMD (Use the default clframework SHA)"
echo "Usage: $CMD -s <CLFRAMEWORK_SHA>"
echo "Usage: $CMD -p (Print current default clframework SHA)"
- exit 1
+ exit 0
}
PrintDefaultClframeworkSha() {
echo $DEFAULT_CLFRAMEWORKREVISION
- exit 2;
+ exit 0;
}
function AssertZeroExitCode {