rattail-fabric/rattail_fabric/deploy/composer/install-composer.sh
Lance Edgar 40dbb595e9 Initial commit
mostly as-is, taken from `rattail.fablib` subpackage
2018-02-24 16:29:20 -06:00

18 lines
463 B
Bash
Executable file

#!/bin/sh
EXPECTED_SIGNATURE=$(wget -q -O - https://composer.github.io/installer.sig)
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
ACTUAL_SIGNATURE=$(php -r "echo hash_file('SHA384', 'composer-setup.php');")
if [ "$EXPECTED_SIGNATURE" != "$ACTUAL_SIGNATURE" ]
then
>&2 echo 'ERROR: Invalid installer signature'
rm composer-setup.php
exit 1
fi
php composer-setup.php --quiet
RESULT=$?
rm composer-setup.php
exit $RESULT