This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 45eaba60 docs: fix path in build script (#1379)
45eaba60 is described below
commit 45eaba6043682affaff8aa97eef46a9e04a215d8
Author: David Li <[email protected]>
AuthorDate: Tue Dec 19 09:42:12 2023 -0500
docs: fix path in build script (#1379)
Fixes #1368.
---
ci/scripts/docs_build.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ci/scripts/docs_build.sh b/ci/scripts/docs_build.sh
index dcdf27a6..7294e6d6 100755
--- a/ci/scripts/docs_build.sh
+++ b/ci/scripts/docs_build.sh
@@ -32,8 +32,8 @@ main() {
pushd "$source_dir/java"
mvn site
- rm -rf "$source_dir/docs/build/java/api"
- cp -r target/site/apidocs "$source_dir/docs/build/java/api"
+ rm -rf "$source_dir/docs/build/html/java/api"
+ cp -r target/site/apidocs "$source_dir/docs/build/html/java/api"
popd
for desc_file in $(find "${source_dir}/r" -name DESCRIPTION); do