diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-11-21 04:23:00 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-11-21 04:23:00 +0000 |
commit | 862987344403417057deb453dd73887799cb0fcb (patch) | |
tree | 03fbf880815c073e9fd7a478508c2340742f406a /builddeps-cbfstool | |
parent | a87f27c40d01f14f139c5bb89df14da8681f4b61 (diff) | |
download | librebootfr-862987344403417057deb453dd73887799cb0fcb.tar.gz librebootfr-862987344403417057deb453dd73887799cb0fcb.zip |
scripts (error handling): Replace exit with exit 1
This is so that scripts using these in the future can
more easily debug if errors occur.
Diffstat (limited to 'builddeps-cbfstool')
-rwxr-xr-x | builddeps-cbfstool | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builddeps-cbfstool b/builddeps-cbfstool index ee1240ea..57d903f3 100755 --- a/builddeps-cbfstool +++ b/builddeps-cbfstool @@ -27,7 +27,7 @@ set -u -e -v # This is how we know. if [ -f "DEBLOB" ]; then echo "Do not run this in meta/src directory. Do it in binary archive, either with libreboot-supplied ROM images or your own binary archive created with 'build-release'." - exit + exit 1 fi cd cbfstool_standalone |