From 8d1ee3d8be3cfdce8a4881c573f858e5442e10a8 Mon Sep 17 00:00:00 2001 From: Sadek Baroudi Date: Mon, 31 Oct 2022 12:58:45 -0700 Subject: [PATCH] finally got the exit status right for github build action fp_build.sh calls --- bin/fp_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/fp_build.sh b/bin/fp_build.sh index 1f81c3f88f..892fa583d3 100755 --- a/bin/fp_build.sh +++ b/bin/fp_build.sh @@ -238,7 +238,7 @@ process_build_string() { if [[ "${run_build}" == "yes" ]]; then echo "fp_build.sh: Running QMK Build...." echo "" - build_run_output=$(eval "${build_string}" | tee /dev/stderr) + eval "${build_string}" build_run_status=$? if [[ $build_run_status -ne 0 ]]; then echo "${0} build run failed with status ${build_run_status}"