Remove exit after composer is installed. Fix #32

This commit is contained in:
Shivam Mathur 2019-09-25 16:09:39 +05:30 committed by GitHub
parent c4869bf854
commit a95b1af58d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ if [ ! -e "/usr/bin/composer" ]; then
sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer
RESULT=$? RESULT=$?
rm composer-setup.php rm composer-setup.php
exit $RESULT echo $RESULT
fi fi
composer global require hirak/prestissimo > /dev/null 2>&1 composer global require hirak/prestissimo > /dev/null 2>&1