From c8ae5aae15462bdbc0b3ff692c10d1f886982e97 Mon Sep 17 00:00:00 2001 From: Andre Herbst Date: Wed, 1 Oct 2025 21:31:28 +0200 Subject: [PATCH] fix(test-scripts/sh): use $0 instead of $_ Fixes "invalid option -e" error --- test-scripts/sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-scripts/sh b/test-scripts/sh index 480a546..b0e8f4a 100755 --- a/test-scripts/sh +++ b/test-scripts/sh @@ -1,7 +1,7 @@ #!/usr/bin/env sh set -e -dir="$(cd "$(dirname "$_")" && pwd)" +dir="$(cd "$(dirname "$0")" && pwd)" script="${dir}/../dist/ColorEcho.sh" . "${script}"