mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-08 07:16:49 +00:00
18 lines
495 B
Bash
18 lines
495 B
Bash
#!/bin/sh
|
|
|
|
EXPECTED_SIGNATURE="$(curl 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 --install-dir=/usr/bin/ --filename=composer
|
|
RESULT=$?
|
|
rm composer-setup.php
|
|
exit $RESULT
|