소스 검색

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