Explorar el Código

updated to use correct '=' operator by request

Brad Koehn hace 6 años
padre
commit
c554bcd84e
Se han modificado 1 ficheros con 1 adiciones y 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" -eq "true" ]; then
+if [ "$HORIZON_EMBED" = "true" ]; then
 	php artisan horizon &
 fi