We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6d99cf commit 7afcbaeCopy full SHA for 7afcbae
tools/api_refs/api_refs.sh
@@ -206,9 +206,11 @@ else
206
exit 3;
207
fi;
208
209
-echo 'Set up DXP recipes…';
210
-git init && git add . && git commit -m "Installed Ibexa Commerce" > /dev/null;
211
-composer recipes:install ibexa/$DXP_EDITION --no-interaction;
+if [ 0 -eq $DXP_ALREADY_EXISTS ]; then
+ echo 'Set up DXP recipes…';
+ git init && git add . && git commit -m "Installed Ibexa Commerce" > /dev/null;
212
+ composer recipes:install ibexa/$DXP_EDITION --force --reset --no-interaction;
213
+fi;
214
215
echo 'Dump REST OpenAPI schema… ';
216
$PHP_BINARY bin/console ibexa:openapi --yaml \
0 commit comments