aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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