Browse Source

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

fixed a bash scripting bug in start.sh
daniel 6 năm trước cách đây
mục cha
commit
eb14e6be66
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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