File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -6,20 +6,19 @@ echo "output_log=Docker tag: $docker_tag"
66
77if [ -z " $ACTION_PHPUNIT_PATH " ]
88then
9- echo " output_log=Using phar"
109 phar_url=" https://phar.phpunit.de/phpunit"
1110 if [ " $ACTION_VERSION " != " latest" ]
1211 then
1312 phar_url=" ${phar_url} -${ACTION_VERSION} "
1413 fi
1514 phar_url=" ${phar_url} .phar"
1615 echo " output_log=Using phar url $phar_url "
17- curl --silent -H " User-agent: cURL (https://github.com/php-actions)" -L " $phar_url " > " ${github_action_path} /phpunit.phar"
1816
1917 phar_path=" ${github_action_path} /phpunit.phar"
18+ curl -H " User-agent: cURL (https://github.com/php-actions)" -L " $phar_url " > " $phar_path "
2019else
21- phar_path=" ${GITHUB_WORKSPACE} /$ACTION_PHPUNIT_PATH "
2220 echo " output_log=Using vendored phpunit"
21+ phar_path=" ${GITHUB_WORKSPACE} /$ACTION_PHPUNIT_PATH "
2322fi
2423
2524echo " output_log=phar_path=$phar_path "
You can’t perform that action at this time.
0 commit comments