Explorar el Código

Build system: Allow pre-release dependencies when creating pre-releases

Daniel Rudolf hace 6 años
padre
commit
6dd6da655f
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. 7 0
      .build/create-release.sh

+ 7 - 0
.build/create-release.sh

@@ -31,6 +31,13 @@ composer require --no-update \
     "picocms/pico-deprecated $VERSION_FULL@$VERSION_STABILITY"
 echo
 
+# set minimum stability
+if [ "$VERSION_STABILITY" != "stable" ]; then
+    echo "Setting minimum stability to '$VERSION_STABILITY'..."
+    composer config "minimum-stability" "$VERSION_STABILITY"
+    composer config "prefer-stable" "true"
+fi
+
 # install dependencies
 echo "Running \`composer install\`..."
 composer install --no-suggest --prefer-dist --no-dev --optimize-autoloader