Skip to content

Commit 9eee8c1

Browse files
Fix args array concatenation
1 parent 297920d commit 9eee8c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ mapfile -t lines < <(echo "$INPUT_TESTS" | grep -v "^$")
1111
e_code=0
1212
for line in "${lines[@]}"; do
1313
read -r -a args <<< "$line"
14-
cmd="/opa test ${args[*]} $INPUT_OPTIONS"
14+
cmd="/opa test ${args[@]} $INPUT_OPTIONS"
1515
echo " 🚀 Running: $cmd"
1616
printf "\n"
1717
eval "$cmd" || e_code=1

0 commit comments

Comments
 (0)