You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ro...@apache.org on 2021/02/10 16:19:02 UTC

[activemq-website] 01/03: remove incremental option, doesnt play nice with new release update processes

This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-website.git

commit 1c2f4cec9b06bcd8a032e34da6d4f8449577fee8
Author: Robbie Gemmell <ro...@apache.org>
AuthorDate: Wed Feb 10 13:16:13 2021 +0000

    remove incremental option, doesnt play nice with new release update processes
---
 README.md | 8 ++++----
 build.sh  | 2 +-
 serve.sh  | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index 557301b..63f232a 100644
--- a/README.md
+++ b/README.md
@@ -23,9 +23,9 @@ Alternatively, to just build the site, run:
 
     ./build.sh
 
-Note that these helper scripts perform incremental builds. If for some reason you need to clear the metadata/cache used to support the build process, you can run:
-
-    rm -rf src/.jekyll-metadata src/.jekyll-cache/
+If for some reason you need to clear the metadata/cache used to support the build process, and the build output, you can run:
+    rm -rf src/.jekyll-*
+    rm -rf _site
 
 
 Contributing to the site
@@ -45,4 +45,4 @@ If you are a committer, do the following:
 2. Run `serve.sh`/ `build.sh`and very the updates made look appropriate.
 3. Push the changes to the ASF remote.
 4. The CI build will run and commit the generated site to the `asf-site` branch automatically within a few minutes, from where it will also be published. CI build status mails go to the commits list.
-4. Verify the updated website works as expected by browsing it.
\ No newline at end of file
+4. Verify the updated website works as expected by browsing it.
diff --git a/build.sh b/build.sh
index bb99ecb..27ef50b 100755
--- a/build.sh
+++ b/build.sh
@@ -1,5 +1,5 @@
 set -e
 bundle
-jekyll build --incremental
+jekyll build
 set +e
 
diff --git a/serve.sh b/serve.sh
index 8a82932..1ace08a 100755
--- a/serve.sh
+++ b/serve.sh
@@ -1,5 +1,5 @@
 set -e
 bundle
-jekyll serve --incremental
+jekyll serve
 set +e