From: Fred Morcos Date: Fri, 27 Jan 2023 14:18:59 +0000 (+0100) Subject: Don't use product name in uploaded html docs X-Git-Tag: dnsdist-1.8.0-rc1~57^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=32db8be6a2edcf79394acc5e0a17bdae3abfdb17;p=thirdparty%2Fpdns.git Don't use product name in uploaded html docs Co-authored-by: Peter van Dijk --- diff --git a/tasks.py b/tasks.py index 05c4337fa1..d903186754 100644 --- a/tasks.py +++ b/tasks.py @@ -297,7 +297,7 @@ def ci_docs_build_pdf(c): @task def ci_docs_upload_master(c, docs_host, pdf, username, product, directory=""): c.run(f"rsync -crv --delete --no-p --chmod=g=rwX --exclude '*~' ./docs/_build/html-docs/ {username}@{docs_host}:{directory}") - c.run(f"rsync -crv --no-p --chmod=g=rwX --exclude '*~' ./docs/_build/{product}-html-docs.tar.bz2 {username}@{docs_host}:{directory}") + c.run(f"rsync -crv --no-p --chmod=g=rwX --exclude '*~' ./docs/_build/{product}-html-docs.tar.bz2 {username}@{docs_host}:{directory}/html-docs.tar.bz2") c.run(f"rsync -crv --no-p --chmod=g=rwX --exclude '*~' ./docs/_build/latex/{pdf} {username}@{docs_host}:{directory}") @task