From 25ffc3fb6fa5ad66d0c5570fcc976c6e3eacef9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gu=C3=A9len?= Date: Sat, 26 Apr 2025 16:20:34 +0200 Subject: [PATCH] (fix): Proper behaviour for wildcards and proper test --- test.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test.sh b/test.sh index 1d75faf..7c69f1c 100755 --- a/test.sh +++ b/test.sh @@ -1343,6 +1343,7 @@ outfile EOF when_run <<"EOF" "normal behaviour with wildcard before echo" +touch outfile export target=out* echo $target EOF @@ -1351,6 +1352,7 @@ outfile EOF when_run <<"EOF" "normal behaviour with wildcard after variable expansion" +touch outfile export target="out*" echo $target EOF