Skip to content

Commit 4bc6a2c

Browse files
committed
fix: 🐛 Fix meson setup failure not exiting in setup stage of script
If somehow the `meson setup` command were to fail, the prior verson of this script did not error at the `if [ $meson_exit_code -ne 0 ]; then` step.
1 parent 37461a8 commit 4bc6a2c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

build-tools/build.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ git config --global --add safe.directory /github/workspace
3030
COMPILE_STD_OUTPUT=$(mktemp)
3131
echo "::group::Build Project"
3232
meson setup --cross-file scripts/v5.ini build | tee $COMPILE_STD_OUTPUT
33-
echo "PIPESTATUS: ${PIPESTATUS[@]}"
3433
meson_exit_code=${PIPESTATUS[0]}
3534
echo "Meson setup exit code: $meson_exit_code"
3635
if [ $meson_exit_code -ne 0 ]; then

0 commit comments

Comments
 (0)