mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-21 04:23:16 +00:00
Merge pull request #553 from koehn/fix-startup-script
fixed a bash scripting bug in start.sh
This commit is contained in:
commit
eb14e6be66
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ gosu www-data:www-data php artisan migrate --force
|
||||||
gosu www-data:www-data php artisan update
|
gosu www-data:www-data php artisan update
|
||||||
|
|
||||||
# Run a worker if it is set as embedded
|
# 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 &
|
gosu www-data:www-data php artisan horizon &
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue