Explorar o código

fixed a bash scripting bug in start.sh that prevented horizon from ever starting

Brad Koehn %!s(int64=6) %!d(string=hai) anos
pai
achega
de6c95d256
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      contrib/docker/start.sh

+ 1 - 1
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