We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3409f96 commit 4c3b011Copy full SHA for 4c3b011
phpunit-action.bash
@@ -17,7 +17,7 @@ command_string=("phpunit")
17
18
if [ -n "$ACTION_CONFIGURATION" ]
19
then
20
- command_string+=("--configuration '$ACTION_CONFIGURATION'")
+ command_string+=(--configuration "$ACTION_CONFIGURATION")
21
fi
22
23
if [ -n "$ACTION_LOG_JUNIT" ]
@@ -85,9 +85,9 @@ then
85
command_string+=("$ACTION_ARGS")
86
87
88
-echo "Command: " "${command_string[*]}"
+echo "Command: " "${command_string[@]}"
89
docker run --rm \
90
--volume "${github_action_path}/phpunit.phar":/usr/local/bin/phpunit \
91
--volume "${GITHUB_WORKSPACE}":/app \
92
--workdir /app \
93
- ${docker_tag} ${command_string[*]}
+ ${docker_tag} "${command_string[@]}"
0 commit comments