You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by nk...@apache.org on 2019/07/23 15:48:18 UTC

[flink-web] 02/05: [hotfix] remove incremental build option

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

nkruber pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/flink-web.git

commit 0645f5444c6396137a9beb8a0ce7f99d9702acdb
Author: Nico Kruber <ni...@ververica.com>
AuthorDate: Wed Jul 17 18:07:50 2019 +0200

    [hotfix] remove incremental build option
    
    This doesn't even work if added to getopts - our (very old) Jekyll is
    complaining.
---
 build.sh | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/build.sh b/build.sh
index e3f25ad..d824d43 100755
--- a/build.sh
+++ b/build.sh
@@ -55,10 +55,6 @@ while getopts ":p" opt; do
     case $opt in
         p)
         JEKYLL_CMD="serve --baseurl= --watch --trace --incremental"
-        ;;
-        i)
-        [[ `${RUBY} -v` =~ 'ruby 1' ]] && echo "Error: building the docs with the incremental option requires at least ruby 2.0" && exit 1
-        JEKYLL_CMD="liveserve --baseurl= --watch --incremental"
     esac
 done