Use "$@" instead of $*

This commit is contained in:
Kamil Śliwak 2020-12-11 19:22:59 +01:00
parent 4c186321c8
commit 1c7cc376d1

View File

@ -4,7 +4,7 @@ REPO="$(dirname "$0")/.."
echo "Finding unique failures..." echo "Finding unique failures..."
( (
for x in $* for x in "$@"
do do
echo -n "$x" " # " echo -n "$x" " # "
# This subshell is a workaround to prevent the shell from printing # This subshell is a workaround to prevent the shell from printing