aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2020-06-24 11:38:52 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2020-06-24 11:38:52 -0700
commit5b6c641df7dd9e6d6dc2d8b851e8599c827a0243 (patch)
tree2ff6deafbb773ea11f4bfd5759b3f6b49b01bc85
parent_plugins/packages: minor format fix (diff)
downloadwww-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>
-rwxr-xr-xbin/build-incremental.sh5
-rwxr-xr-xbin/build.sh3
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