diff options
-rwxr-xr-x | bin/build-incremental.sh | 5 | ||||
-rwxr-xr-x | bin/build.sh | 3 |
2 files changed, 3 insertions, 5 deletions
diff --git a/bin/build-incremental.sh b/bin/build-incremental.sh deleted file mode 100755 index 73f6fbc..0000000 --- a/bin/build-incremental.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash -set -e -source "$(dirname "$0")"/docker-helper.inc -# Run the actual build process, with no networking permitted -docker_run_net_none jekyll build --incremental diff --git a/bin/build.sh b/bin/build.sh index 6cf9a84..cbabb60 100755 --- a/bin/build.sh +++ b/bin/build.sh @@ -2,4 +2,7 @@ set -e source "$(dirname "$0")"/docker-helper.inc # Run the actual build process, with no networking permitted +# Incremental builds do not update indexes correctly, so we cannot use them. +# https://github.com/jekyll/jekyll/issues/3411 +# https://github.com/jekyll/jekyll/issues/3747 docker_run_net_none jekyll build |