Skip to content
Snippets Groups Projects
Commit c449ebf3 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

fixes #3957

Closes #3957

Merge request studip/studip!2815
parent 33b91e8d
No related branches found
No related tags found
No related merge requests found
...@@ -28,17 +28,14 @@ done ...@@ -28,17 +28,14 @@ done
sh $STUDIP/.gitlab/scripts/install_db.sh sh $STUDIP/.gitlab/scripts/install_db.sh
if [ ! -z $AUTO_MIGRATE ]; then echo "Migrate Instance"
echo "Migrate Instance" # If migrate fails start instance anyway
# If migrate fails start instance anyway php "$STUDIP/cli/studip migrate" || true
php "$STUDIP/cli/studip migrate" || true echo "Migration finished"
echo "Migration finished"
fi
# first arg is `-f` or `--some-option` # first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then if [ "${1#-}" != "$1" ]; then
set -- apache2-foreground "$@" set -- apache2-foreground "$@"
fi fi
exec "$@" exec "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment