forked from mirror/pixelfed
Merge pull request #553 from koehn/fix-startup-script
fixed a bash scripting bug in start.sh
This commit is contained in:
commit
eb14e6be66
|
@ -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…
Reference in New Issue