You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by rm...@apache.org on 2021/02/11 12:28:33 UTC

[flink] branch master updated: [hotfix][ci] Fix hugo docs builds

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

rmetzger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 56e0b92  [hotfix][ci] Fix hugo docs builds
56e0b92 is described below

commit 56e0b926b74d3cc626cc366748a0c89292f04e07
Author: Robert Metzger <rm...@apache.org>
AuthorDate: Thu Feb 11 13:14:52 2021 +0100

    [hotfix][ci] Fix hugo docs builds
---
 tools/ci/build_docs.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/ci/build_docs.sh b/tools/ci/build_docs.sh
index 087f45e..165d99f 100755
--- a/tools/ci/build_docs.sh
+++ b/tools/ci/build_docs.sh
@@ -28,7 +28,8 @@ fi
 tar -zxvf $HUGO_ARTIFACT
 
 git submodule update --init --recursive
-./hugo --source docs --destination docs/target
+# generate docs into docs/target
+./hugo -v --source docs --destination target
 
 if [ $? -ne 0 ]; then
 	echo "Error building the docs"