Expand parameters as separate words

(cherry picked from commit 961ea18145)
This commit is contained in:
Jan Stodola 2019-01-25 18:47:38 +01:00 committed by Brian C. Lane
parent a839824f7a
commit 12cd27375a
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ if [ -z "$*" ]; then
else
# execute other cli tests which need more adjustments in the calling environment
# or can't be executed inside Travis CI
for TEST in "$*"; do
for TEST in "$@"; do
./$TEST
done
fi