diff options
author | Rob Landley <rob@landley.net> | 2021-06-01 22:03:07 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2021-06-01 22:03:07 -0500 |
commit | e00b4c26553beae06e0a30365cba291921106a48 (patch) | |
tree | 62d9949d340c5bab965de9477dcddec9bb6d27f5 | |
parent | 3eb92247b34466aeff9fa313ea76cb61cf48835c (diff) | |
download | toybox-e00b4c26553beae06e0a30365cba291921106a48.tar.gz |
Clear environment variables between tests.
-rwxr-xr-x | scripts/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test.sh b/scripts/test.sh index cdfe3bdb..daaeec07 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -44,7 +44,7 @@ do_test() fi C="$(dirname $(realpath "$C"))/$CMDNAME" - . "$1" + (. "$1") } if [ $# -ne 0 ] |