Skip to content
Snippets Groups Projects
Unverified Commit 1c1ebdf4 authored by snipe's avatar snipe Committed by GitHub
Browse files

Merge pull request #9706 from derdeagle/develop

Fixes #9705: Prevent syntax error in startup.sh
parents 1bc4d1b9 8f4b88a8
Branches
No related tags found
No related merge requests found
...@@ -54,7 +54,7 @@ then ...@@ -54,7 +54,7 @@ then
cp -ax /var/www/html/vendor/laravel/passport/database/migrations/* /var/www/html/database/migrations/ cp -ax /var/www/html/vendor/laravel/passport/database/migrations/* /var/www/html/database/migrations/
fi fi
if [ $SESSION_DRIVER = "database" ] if [ "$SESSION_DRIVER" = "database" ]
then then
cp -ax /var/www/html/vendor/laravel/framework/src/Illuminate/Session/Console/stubs/database.stub /var/www/html/database/migrations/2021_05_06_0000_create_sessions_table.php cp -ax /var/www/html/vendor/laravel/framework/src/Illuminate/Session/Console/stubs/database.stub /var/www/html/database/migrations/2021_05_06_0000_create_sessions_table.php
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment