10 lines
298 B
Plaintext
10 lines
298 B
Plaintext
#!/command/execlineb -P
|
|
VERSION=$(php bootstrap/getVersion.php)
|
|
|
|
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
|