From: Kevin Day Date: Sun, 5 Jun 2022 22:48:04 +0000 (-0500) Subject: Bugfix: Package building test failures do not properly fail. X-Git-Tag: 0.5.10~68 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=050fa0cec6fae2db46262fd969bdec39438408bb;p=fll Bugfix: Package building test failures do not properly fail. The wrong variable is checked and so the failure is missed. --- diff --git a/build/scripts/test.sh b/build/scripts/test.sh index 27a22fd..722a085 100644 --- a/build/scripts/test.sh +++ b/build/scripts/test.sh @@ -563,7 +563,7 @@ test_operate_build_tools() { test_operate_build_project "$path_test_package_program" "$path_test_project" fake monolithic bootstrap - if [[ $failure -ne 0 ]] ; then + if [[ $? -ne 0 ]] ; then let failure=1 fi fi