This is an automated email from the ASF dual-hosted git repository.
martijnvisser 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 2028b562572 [hotfix] Add missing backslash to skip webui build during
Javadoc generation
2028b562572 is described below
commit 2028b562572e9f697f71f25e0bdc353cc3a7c602
Author: Martijn Visser <[email protected]>
AuthorDate: Fri Aug 30 21:46:47 2024 +0200
[hotfix] Add missing backslash to skip webui build during Javadoc generation
---
.github/workflows/docs.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/docs.sh b/.github/workflows/docs.sh
index dbed6f93a88..60cbe3db789 100755
--- a/.github/workflows/docs.sh
+++ b/.github/workflows/docs.sh
@@ -52,7 +52,7 @@ mvn clean install -B -DskipTests -Dfast -Dskip.npm
-Pskip-webui-build
# build java/scala docs
mkdir -p docs/target/api
mvn javadoc:aggregate -B \
- -Pskip-webui-build
+ -Pskip-webui-build \
-Dmaven.javadoc.failOnError=true \
-Dcheckstyle.skip=true \
-Dspotless.check.skip=true \