File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 2727 if [ -f composer.lock ]; then \
2828 composer install --no-interaction -o; \
2929 else \
30+ if echo "${SHOPWARE_VERSION}" | grep -q '^trunk' ; then \
31+ jq '.conflict["symfony/type-info"] = "<7.1.8"' composer.json > composer.tmp.json && mv composer.tmp.json composer.json; \
32+ fi && \
3033 composer update --prefer-lowest --prefer-stable --no-interaction -o; \
3134 fi && \
3235 APP_URL="http://localhost" php bin/console system:setup --database-url=mysql://root:root@localhost:3306/shopware --generate-jwt-keys -nq && \
Original file line number Diff line number Diff line change 3737 if [ -f composer.lock ]; then \
3838 composer install --no-interaction -o; \
3939 else \
40+ if echo "${SHOPWARE_VERSION}" | grep -q '^trunk' ; then \
41+ jq '.conflict["symfony/type-info"] = "<7.1.8"' composer.json > composer.tmp.json && mv composer.tmp.json composer.json; \
42+ fi && \
4043 composer update --prefer-lowest --prefer-stable --no-interaction -o; \
4144 fi && \
4245 APP_URL="http://localhost" php bin/console system:setup --database-url=mysql://root:root@localhost:3306/shopware --generate-jwt-keys -nq && \
You can’t perform that action at this time.
0 commit comments