Procházet zdrojové kódy

Merge pull request #553 from koehn/fix-startup-script

fixed a bash scripting bug in start.sh
daniel před 6 roky
rodič
revize
eb14e6be66
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      contrib/docker/start.sh

+ 1 - 1
contrib/docker/start.sh

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