mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-21 20:10:47 +00:00
fixed a bash scripting bug in start.sh that prevented horizon from ever starting
This commit is contained in:
parent
833d17db4e
commit
de6c95d256
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ php artisan migrate --force
|
|||
php artisan update
|
||||
|
||||
# Run a worker if it is set as embedded
|
||||
if [ $HORIZON_EMBED = true ]; then
|
||||
if [ "$HORIZON_EMBED" -eq "true" ]; then
|
||||
php artisan horizon &
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue