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

This commit is contained in:
Daniel Rudolf 2019-01-03 13:15:18 +01:00
parent feba0b32df
commit 6dd6da655f
No known key found for this signature in database
GPG key ID: A061F02CD8DE4538

View file

@ -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