From 0f65c750805a91f1205604e3b91dc4083cc6c402 Mon Sep 17 00:00:00 2001 From: Sourabh Bajaj Date: Mon, 3 Apr 2017 11:48:31 -0700 Subject: [PATCH] Docker server command should run non-incremental build --- run_with_docker.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run_with_docker.sh b/run_with_docker.sh index 47ff9a12d51..59241464a1d 100755 --- a/run_with_docker.sh +++ b/run_with_docker.sh @@ -39,6 +39,9 @@ fi case "$1" in server) + _runner "bundle exec jekyll server --force_polling --watch -H 0.0.0.0 -P 4000"; + ;; + server_incremental) _runner "bundle exec jekyll server --force_polling --watch -H 0.0.0.0 -P 4000 --incremental"; ;; test)