Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit af4d6af

Browse files
committed
Fix: shell script is hard
1 parent ed1ef62 commit af4d6af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ifdef TRAVIS_PHP_VERSION
33
composer self-update
44
composer install --prefer-source
55
else
6-
test -s ./composer.phar || { curl -sS https://getcomposer.org/installer | php }
6+
if [ ! -f ./composer.phar ]; then curl -sS https://getcomposer.org/installer | php; fi
77
./composer.phar install --prefer-source
88
endif
99

0 commit comments

Comments
 (0)