From 543e4251e1980aae0538dba8a6f0f0c82c60dd7d Mon Sep 17 00:00:00 2001 From: Matej Knopp Date: Sun, 22 Oct 2023 14:45:38 +0200 Subject: [PATCH] fix: run_build_tool.sh not passing through exit code --- run_build_tool.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run_build_tool.sh b/run_build_tool.sh index 8bf9abe..0e2c973 100755 --- a/run_build_tool.sh +++ b/run_build_tool.sh @@ -82,4 +82,7 @@ if [ $exit_code == 253 ]; then "$DART" pub get --no-precompile "$DART" compile kernel bin/build_tool_runner.dart "$DART" bin/build_tool_runner.dill "$@" + exit_code=$? fi + +exit $exit_code