diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2020-06-24 11:38:52 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2020-06-24 11:38:52 -0700 |
commit | 5b6c641df7dd9e6d6dc2d8b851e8599c827a0243 (patch) | |
tree | 2ff6deafbb773ea11f4bfd5759b3f6b49b01bc85 /bin | |
parent | _plugins/packages: minor format fix (diff) | |
download | www-5b6c641df7dd9e6d6dc2d8b851e8599c827a0243.tar.gz www-5b6c641df7dd9e6d6dc2d8b851e8599c827a0243.tar.bz2 www-5b6c641df7dd9e6d6dc2d8b851e8599c827a0243.zip |
bin/build: remove incremental build option
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'bin')
-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 |