Skip to content

Commit

Permalink
[Platform.sh] Fix bash logic for COMPOSER_AUTH env var
Browse files Browse the repository at this point in the history
  • Loading branch information
andrerom committed Oct 1, 2019
1 parent 077d7ae commit abd82d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .platform.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ hooks:
nvm current
nvm install 10.15.3
if ["$COMPOSER_AUTH" == ""]; then
if [ -z "$COMPOSER_AUTH" ]; then
echo "TIP: If you need to authenticate against Github/Gitlab/updates.ez.no, use COMPOSER_AUTH env variable"
echo "See: https://docs.platform.sh/tutorials/composer-auth.html#set-the-envcomposerauth-project-variable"
fi
Expand Down

0 comments on commit abd82d2

Please sign in to comment.