Skip to content

Commit

Permalink
ci: fix deploy (#3041)
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin committed Sep 24, 2019
1 parent a1b7e6f commit 3042bbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified .azure/azure.sig
Binary file not shown.
4 changes: 2 additions & 2 deletions .azure/composer-install-step.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit 3042bbb

Please sign in to comment.