ci: fix deploy (#3041)

This commit is contained in:
Alexis Saettler
2019-09-24 23:25:55 +02:00
committed by GitHub
parent a1b7e6fb8c
commit 3042bbb60a
2 changed files with 2 additions and 2 deletions
BIN
View File
Binary file not shown.
+2 -2
View File
@@ -4,6 +4,6 @@ steps:
- bash: |
sudo composer self-update
composer global require hirak/prestissimo
test "${{ parameters.no_dev }}" == "true" && EXTRA_PARAM = "--no-dev"
composer install --no-interaction --no-suggest --no-progress --ignore-platform-reqs $EXTRA_PARAM
test "${{ parameters.no_dev }}" == "true" && export EXTRA_PARAM = "--no-dev"
composer install --no-interaction --no-suggest --no-progress --ignore-platform-reqs ${EXTRA_PARAM:-}
displayName: 'composer install'