Skip to content

Commit 3f56f12

Browse files
author
Greg Bowler
committed
Push no-ansi into command string array
1 parent a4e5406 commit 3f56f12

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

phpstan-action.bash

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ phar_url="https://www.getrelease.download/phpstan/phpstan/$ACTION_VERSION/phar"
88
curl --silent -H "User-agent: cURL (https://github.com/php-actions)" -L "$phar_url" > "${github_action_path}/phpstan.phar"
99
chmod +x "${github_action_path}/phpstan.phar"
1010

11-
command_string=("phpstan --no-ansi")
11+
command_string=("phpstan")
12+
command_string+=("--no-ansi")
1213

1314
if [ -n "$ACTION_COMMAND" ]
1415
then

0 commit comments

Comments
 (0)