You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by hx...@apache.org on 2022/09/09 03:30:49 UTC

[flink] branch release-1.16 updated: [hotfix] Fix the missing comma in config.toml

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

hxb pushed a commit to branch release-1.16
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.16 by this push:
     new 1c654095345 [hotfix] Fix the missing comma in config.toml
1c654095345 is described below

commit 1c654095345c0cc3566b46f8fa02a9076216d5c6
Author: huangxingbo <hx...@apache.org>
AuthorDate: Fri Sep 9 11:30:18 2022 +0800

    [hotfix] Fix the missing comma in config.toml
---
 docs/config.toml                          | 2 +-
 tools/releasing/create_snapshot_branch.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/config.toml b/docs/config.toml
index fb118409659..d938c14433b 100644
--- a/docs/config.toml
+++ b/docs/config.toml
@@ -71,7 +71,7 @@ pygmentsUseClasses = true
   MenuLinks = [
     ["Project Homepage", "//flink.apache.org"],
     ["JavaDocs", "//nightlies.apache.org/flink/flink-docs-release-1.16/api/java/"],
-    ["ScalaDocs", "//nightlies.apache.org/flink/flink-docs-release-1.16/api/scala/index.html#org.apache.flink.api.scala.package/"]
+    ["ScalaDocs", "//nightlies.apache.org/flink/flink-docs-release-1.16/api/scala/index.html#org.apache.flink.api.scala.package/"],
     ["PyDocs", "//nightlies.apache.org/flink/flink-docs-release-1.16/api/python/"]
   ]
 
diff --git a/tools/releasing/create_snapshot_branch.sh b/tools/releasing/create_snapshot_branch.sh
index c3d86747299..a010001bcc5 100755
--- a/tools/releasing/create_snapshot_branch.sh
+++ b/tools/releasing/create_snapshot_branch.sh
@@ -55,7 +55,7 @@ perl -pi -e "s#^baseURL = .*#baseURL = \'${url_base}${SHORT_RELEASE_VERSION}\'#"
 perl -pi -e "s#^  JavaDocs = .*#  JavaDocs = \"${url_base}${SHORT_RELEASE_VERSION}/api/java/\"#" ${config_file}
 perl -pi -e "s#^    \[\"JavaDocs\", .*#    \[\"JavaDocs\", \"${url_base}${SHORT_RELEASE_VERSION}/api/java/\"\],#" ${config_file}
 perl -pi -e "s#^  ScalaDocs = .*#  ScalaDocs = \"${url_base}${SHORT_RELEASE_VERSION}/api/scala/index.html\#org.apache.flink.api.scala.package\"#" ${config_file}
-perl -pi -e "s#^    \[\"ScalaDocs\", .*#    \[\"ScalaDocs\", \"${url_base}${SHORT_RELEASE_VERSION}/api/scala/index.html\#org.apache.flink.api.scala.package/\"\]#" ${config_file}
+perl -pi -e "s#^    \[\"ScalaDocs\", .*#    \[\"ScalaDocs\", \"${url_base}${SHORT_RELEASE_VERSION}/api/scala/index.html\#org.apache.flink.api.scala.package/\"\],#" ${config_file}
 perl -pi -e "s#^  PyDocs = .*#  PyDocs = \"${url_base}${SHORT_RELEASE_VERSION}/api/python/\"#" ${config_file}
 perl -pi -e "s#^    \[\"PyDocs\", .*#    \[\"PyDocs\", \"${url_base}${SHORT_RELEASE_VERSION}/api/python/\"\]#" ${config_file}