Browse Source

updated to use correct '=' operator by request

Brad Koehn 6 năm trước cách đây
mục cha
commit
c554bcd84e
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 @@ php artisan migrate --force
 php artisan update
 php artisan update
 
 
 # Run a worker if it is set as embedded
 # Run a worker if it is set as embedded
-if [ "$HORIZON_EMBED" -eq "true" ]; then
+if [ "$HORIZON_EMBED" = "true" ]; then
 	php artisan horizon &
 	php artisan horizon &
 fi
 fi