Skip to content

Commit 0f7ca8c

Browse files
committed
phpdoc.sh: Fix dev version install
When not installing the skeleton, Symfony 7.3 is latter installed instead of Symfony 7.2
1 parent b463872 commit 0f7ca8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/php_api_ref/phpdoc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ cd $TMP_DXP_DIR; # /!\ Change working directory (reason why all paths must be ab
5353
if [ 0 -eq $DXP_ALREADY_EXISTS ]; then
5454
echo "Creating ibexa/$DXP_EDITION-skeleton:$DXP_VERSION project in ${TMP_DXP_DIR}";
5555
if [[ "$DXP_VERSION" == *".x-dev" ]]; then
56-
composer create-project ibexa/website-skeleton:$DXP_VERSION . --no-interaction --no-install --ignore-platform-reqs --no-scripts --stability=dev;
56+
composer create-project ibexa/website-skeleton:$DXP_VERSION . --no-interaction --ignore-platform-reqs --no-scripts --stability=dev;
5757
if [ -n "$AUTH_JSON" ]; then
5858
cp $AUTH_JSON ./;
5959
fi;

0 commit comments

Comments
 (0)