2023-04-27 11:29:02 +02:00
|
|
|
#!/command/execlineb -P
|
2023-05-03 08:31:50 +02:00
|
|
|
VERSION=$(php bootstrap/getVersion.php)
|
2023-05-03 09:06:33 +02:00
|
|
|
echo "$VERSION"
|
|
|
|
# if [ echo "$VERSION" | grep -q "nightly" ]; then
|
|
|
|
# php /var/www/html/artisan migrate:fresh --force
|
|
|
|
# php /var/www/html/artisan db:seed --class ProductionSeeder --force
|
|
|
|
# else
|
|
|
|
php /var/www/html/artisan migrate --force --isolated
|
|
|
|
# fi
|