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