mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-17 01:56:28 +03:00
use second argument
This commit is contained in:
+2
-2
@@ -32,7 +32,7 @@ install:
|
||||
before_script:
|
||||
- |
|
||||
install_package() {
|
||||
composer require --ignore-platform-reqs $(echo $1);
|
||||
composer require --ignore-platform-reqs $1 $2;
|
||||
EXIT_CODE=$?;
|
||||
|
||||
MESSAGE="";
|
||||
@@ -49,4 +49,4 @@ before_script:
|
||||
}
|
||||
export -f install_package
|
||||
|
||||
script: install_package $PACKAGES
|
||||
script: install_package $(echo $PACKAGES)
|
||||
|
||||
Reference in New Issue
Block a user