1
0
Fork 0

updated to use correct '=' operator by request

This commit is contained in:
Brad Koehn 2018-11-14 12:11:08 -06:00
parent de6c95d256
commit c554bcd84e
1 changed files with 1 additions and 1 deletions

View File

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