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

fixed a bash scripting bug in start.sh
pull/599/head
daniel 6 years ago committed by GitHub
commit eb14e6be66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save