From c3d1afb5bb7a9fc258f2d05e1d6b2c2001006bb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Engin=20Okan=20=C3=87etin?= <65574436+MysteriousAeon@users.noreply.github.com> Date: Mon, 17 Aug 2026 15:15:51 +0300 Subject: [PATCH] Fix Linux FMV bank verification --- tools/build-linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build-linux.sh b/tools/build-linux.sh index c2bd0bb..e0db157 100644 --- a/tools/build-linux.sh +++ b/tools/build-linux.sh @@ -69,7 +69,7 @@ fi BIN="$RUNNER_BUILD/$RUNNER_NAME" test -f "$BIN" || { echo "ERROR: runner not built: $BIN" >&2; exit 1; } -strings "$BIN" | grep -q mph_arm9_fmv_runtime || { +grep -a -q mph_arm9_fmv_runtime "$BIN" || { echo "ERROR: runner does not contain the MPH FMV runtime bank." >&2 exit 1 }