Merge pull request #553 from koehn/fix-startup-script

fixed a bash scripting bug in start.sh
This commit is contained in:
daniel 2018-11-26 12:55:18 -07:00 committed by GitHub
commit eb14e6be66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ gosu www-data:www-data php artisan migrate --force
gosu www-data:www-data php artisan update
# Run a worker if it is set as embedded
if [ $HORIZON_EMBED = true ]; then
if [ "$HORIZON_EMBED" = "true" ]; then
gosu www-data:www-data php artisan horizon &
fi