This is an automated email from the ASF dual-hosted git repository.
eladkal pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 199c604d38 Fix mistakenly used "release-mangement build-docs" command
(#33195)
199c604d38 is described below
commit 199c604d3841797b97bd4b813b36379910a532a8
Author: Jarek Potiuk <[email protected]>
AuthorDate: Tue Aug 8 11:00:27 2023 +0200
Fix mistakenly used "release-mangement build-docs" command (#33195)
The #32495 mistakeny replaced the "build" script with a
"release-management build-docs" command where there is no such
command - there is just "build-docs"
---
dev/provider_packages/publish_provider_documentation.sh | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dev/provider_packages/publish_provider_documentation.sh
b/dev/provider_packages/publish_provider_documentation.sh
index cd7ef4433c..bf8eaca1fb 100755
--- a/dev/provider_packages/publish_provider_documentation.sh
+++ b/dev/provider_packages/publish_provider_documentation.sh
@@ -28,7 +28,6 @@ do
provider_filters+=("--package-filter"
"apache-airflow-providers-${provider//./-}")
done
-breeze release-management build-docs \
- "${provider_filters[@]}"
+breeze build-docs "${provider_filters[@]}"
cd "${AIRFLOW_SITE_DIRECTORY}"