From 0fabc6feecd3c68b854b562df0f71a32060e6d12 Mon Sep 17 00:00:00 2001 From: tw93 Date: Fri, 6 Mar 2026 14:15:52 +0800 Subject: [PATCH] fix(shell): suppress SC2016 in timeout perl fallback --- lib/core/timeout.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/core/timeout.sh b/lib/core/timeout.sh index 9f1b2f4..bcb3c9d 100644 --- a/lib/core/timeout.sh +++ b/lib/core/timeout.sh @@ -113,6 +113,7 @@ run_with_timeout() { if [[ "${MO_DEBUG:-0}" == "1" ]]; then echo "[TIMEOUT] Perl fallback, ${duration}s: $*" >&2 fi + # shellcheck disable=SC2016 # Embedded Perl uses Perl variables inside single quotes. "$MO_TIMEOUT_PERL_BIN" -e ' use strict; use warnings;