From c554bcd84e6bf8078620bbc0ca83c19c9ec808a1 Mon Sep 17 00:00:00 2001 From: Brad Koehn Date: Wed, 14 Nov 2018 12:11:08 -0600 Subject: [PATCH] updated to use correct '=' operator by request --- 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 079f6be91..eed8a259a 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" -eq "true" ]; then +if [ "$HORIZON_EMBED" = "true" ]; then php artisan horizon & fi