Skip to content
Snippets Groups Projects
Commit 83cdf467 authored by Florian Bieringer's avatar Florian Bieringer
Browse files

Prevent container from restarting when automigrate fails

parent a8275905
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,9 @@ fi ...@@ -44,7 +44,9 @@ fi
if [ ! -z $AUTO_MIGRATE ]; then if [ ! -z $AUTO_MIGRATE ]; then
echo "Migrate Instance" echo "Migrate Instance"
php "$STUDIP/cli/migrate.php"
# If migrate fails start instance anyway
php "$STUDIP/cli/migrate.php" || true
echo "Migration finished" echo "Migration finished"
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment