1
0
Fork 0

error in string comparison

The double equal (==) with single quote condition for string comparison gives a unexpected operator error.
pull/5478/head
Yannick Carrière 2016-06-29 08:55:34 -04:00 committed by GitHub
parent 635d63ebf7
commit 3bfb4700f4
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ EXPECTED_SIGNATURE=$(wget https://composer.github.io/installer.sig -O - -q)
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" ]
if [ "$EXPECTED_SIGNATURE" = "$ACTUAL_SIGNATURE" ]
then
php composer-setup.php --quiet
RESULT=$?
@ -39,4 +39,4 @@ wget https://raw.githubusercontent.com/composer/getcomposer.org/1b137f8bf6db3e79
```
You may replace the commit hash by whatever the last commit hash is on
https://github.com/composer/getcomposer.org/commits/master
https://github.com/composer/getcomposer.org/commits/master