This is an automated email from the ASF dual-hosted git repository.
bnolsen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git
The following commit(s) were added to refs/heads/main by this push:
new 46c7698 docs: fix installed files for cmake target (#286)
46c7698 is described below
commit 46c7698526dc9e4f5a80f5748e8271c9ecf0b5b7
Author: Brian Olsen <[email protected]>
AuthorDate: Tue Nov 14 08:34:38 2023 -0700
docs: fix installed files for cmake target (#286)
---
jenkins/bin/docs.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/jenkins/bin/docs.sh b/jenkins/bin/docs.sh
index 8a09dd2..3a107c5 100755
--- a/jenkins/bin/docs.sh
+++ b/jenkins/bin/docs.sh
@@ -55,14 +55,14 @@ then
cmake -B docbuild -DDOC_LANG:STRING='en' -DENABLE_DOCS=ON
cmake --build docbuild --target generate_docs -v || exit 1
mkdir -p "${enoutdir}"
- /bin/cp -rf "${docbuilddir}"/html "${enoutdir}"
+ /bin/cp -rf "${docbuilddir}"/html/* "${enoutdir}"
# japanese
rm -rf docbuild
cmake -B docbuild -DDOC_LANG:STRING='ja' -DENABLE_DOCS=ON
cmake --build docbuild --target generate_docs -v || exit 1
mkdir -p "${jaoutdir}"
- /bin/cp -rf "${docbuilddir}"/html "${jaoutdir}"
+ /bin/cp -rf "${docbuilddir}"/html/* "${jaoutdir}"
else