From de6c95d2564acde52cda9a02a5e40a1669d5f585 Mon Sep 17 00:00:00 2001 From: Brad Koehn Date: Mon, 12 Nov 2018 13:21:27 -0600 Subject: [PATCH] fixed a bash scripting bug in start.sh that prevented horizon from ever starting --- contrib/docker/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/docker/start.sh b/contrib/docker/start.sh index 1367b8635..079f6be91 100755 --- a/contrib/docker/start.sh +++ b/contrib/docker/start.sh @@ -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