From 361bb4bde56c8973b5a1856910919e9defc6f63c Mon Sep 17 00:00:00 2001 From: zador-blood-stained Date: Wed, 27 Jul 2016 21:10:33 +0300 Subject: [PATCH] Fix exit code for compile.sh --- compile.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compile.sh b/compile.sh index 28d878e45..0b99c5fe1 100755 --- a/compile.sh +++ b/compile.sh @@ -91,8 +91,8 @@ fi # hook for function to run after build, i.e. to change owner of $SRC # NOTE: this will run only if there were no errors during build process -[[ $(type -t run_after_build) == function ]] && run_after_build +[[ $(type -t run_after_build) == function ]] && run_after_build || true # If you are committing new version of this file, increment VERSION # Only integers are supported -# VERSION=21 +# VERSION=22