diff options
author | Erich Eckner <git@eckner.net> | 2019-10-29 07:36:36 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-10-29 07:36:36 +0100 |
commit | 7965fc949fb2994d2646c58aa640e5a1dae62aba (patch) | |
tree | 7cb1b3fbb8c339f63c2c11c4ddf6c1e90add4190 /bin/sanity-check | |
parent | 2898e8c3bd408a99516380f1fdf38aa472f1d49c (diff) | |
download | builder-7965fc949fb2994d2646c58aa640e5a1dae62aba.tar.xz |
bin/sanity-check: do not use exitcode 1 but 2 on insanity
Diffstat (limited to 'bin/sanity-check')
-rwxr-xr-x | bin/sanity-check | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sanity-check b/bin/sanity-check index 74b084e..1d1867c 100755 --- a/bin/sanity-check +++ b/bin/sanity-check @@ -33,7 +33,7 @@ i_am_insane() { "${work_dir}/build-master-sanity" echo 'SANITY CHECK FAILED' | \ tee -a "${tmp_dir}/messages" >&2 - exit_code=1 + exit_code=2 } eval set -- "$( |