ソースを参照

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

fixed a bash scripting bug in start.sh
daniel 6 年 前
コミット
eb14e6be66
1 ファイル変更1 行追加1 行削除
  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