From d67c7c6c9370c3d12b1c4b914424e51bcffdaeb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Benencia?= Date: Sun, 23 Jun 2024 10:24:53 -0700 Subject: [PATCH] test_e2e.sh: explicitly pass parameters to 'caller' function Fixes SC2120. Part of #891. --- test_e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_e2e.sh b/test_e2e.sh index 87f8bb9..a3d123c 100755 --- a/test_e2e.sh +++ b/test_e2e.sh @@ -36,7 +36,7 @@ function caller() { } function fail() { - echo "FAIL: line $(caller):" "$@" >&3 + echo "FAIL: line $(caller "$@"):" "$@" >&3 return 42 }