Преглед на файлове

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

Brad Koehn преди 6 години
родител
ревизия
de6c95d256
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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