chore: auto-fix permissions after composer install/update

This commit is contained in:
root
2026-05-19 18:47:24 +02:00
parent 8b6e028ae6
commit e5e8e050a0
+5 -1
View File
@@ -70,8 +70,12 @@
"@php artisan package:discover --ansi",
"@php artisan filament:upgrade"
],
"post-install-cmd": [
"bash fix.sh"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"bash fix.sh"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""