8 lines
83 B
Bash
8 lines
83 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
php artisan optimize
|
|
php artisan storage:link --force
|
|
|
|
exec "$@"
|