Skip to content

Commit e95b444

Browse files
authored
Merge pull request #1383 from flatcar/t-lo/fix-run-tests-quoting
run_local_tests.sh: unquote tests var so lists and kola options can pass
2 parents e8db172 + cd7e9b7 commit e95b444

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run_local_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ function run_local_tests() (
104104
if [[ -n "${tests}" ]] ; then
105105
echo "================================="
106106
echo "Running qemu_uefi tests"
107-
test_run "${arch}" qemu_uefi "${tests}"
107+
test_run "${arch}" qemu_uefi ${tests}
108108
fi
109109

110110
if ${update_tests} ; then

0 commit comments

Comments
 (0)