From 9b75f0d9f829c2a8545232ed904ea2c2f1e1878a Mon Sep 17 00:00:00 2001 From: Mateusz Wojczal Date: Fri, 8 Nov 2024 11:47:55 +0100 Subject: [PATCH] updating h5p command and vendor deps --- init.sh | 2 +- init_multidomains.sh | 2 +- makefile | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/init.sh b/init.sh index 8202b33..9e8e41a 100755 --- a/init.sh +++ b/init.sh @@ -98,7 +98,7 @@ else php artisan db:seed --class=PermissionsSeeder --force --no-interaction fi -php artisan h5p:storage-link +php artisan h5p:storage-link --overwrite touch inited diff --git a/init_multidomains.sh b/init_multidomains.sh index e28d85f..d516563 100755 --- a/init_multidomains.sh +++ b/init_multidomains.sh @@ -139,7 +139,7 @@ if [ -n "$MULTI_DOMAINS" ]; then php artisan db:seed --domain=$domain --class=PermissionsSeeder --force --no-interaction fi - php artisan h5p:storage-link --domain=$domain + php artisan h5p:storage-link --overwrite --domain=$domain done else diff --git a/makefile b/makefile index 7f8e8bf..95fc9c2 100644 --- a/makefile +++ b/makefile @@ -30,6 +30,7 @@ restart_queue_cron: update-composer-to-git: - git checkout develop - git pull + - docker compose up -d api - docker compose exec --user=1000 api bash -c "XDEBUG_MODE=off composer update --no-scripts" - git add composer.lock - git commit -m "updating dependecies"