mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-14 16:46:30 +03:00
make sure we support multiple packages
This commit is contained in:
+3
-3
@@ -32,8 +32,8 @@ install:
|
||||
before_script:
|
||||
- |
|
||||
install_package() {
|
||||
composer require --ignore-platform-reqs $1
|
||||
EXIT_CODE=$?
|
||||
composer require --ignore-platform-reqs $(echo $1);
|
||||
EXIT_CODE=$?;
|
||||
|
||||
MESSAGE="";
|
||||
if [[ EXIT_CODE -eq 0 ]]; then
|
||||
@@ -49,4 +49,4 @@ before_script:
|
||||
}
|
||||
export -f install_package
|
||||
|
||||
script: install_package $(echo $PACKAGES)
|
||||
script: install_package $PACKAGES
|
||||
|
||||
Reference in New Issue
Block a user