瀏覽代碼

updated to use correct '=' operator by request

Brad Koehn 6 年之前
父節點
當前提交
c554bcd84e
共有 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" -eq "true" ]; then
+if [ "$HORIZON_EMBED" = "true" ]; then
 	php artisan horizon &
 fi