Explorar o código

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

fixed a bash scripting bug in start.sh
daniel %!s(int64=6) %!d(string=hai) anos
pai
achega
eb14e6be66
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 @@ 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