Repository: qpid-site Updated Branches: refs/heads/asf-site 4fe27ca09 -> 11295daa2
Update dispatch release scripts for doc-related source tree changes Project: http://git-wip-us.apache.org/repos/asf/qpid-site/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-site/commit/11295daa Tree: http://git-wip-us.apache.org/repos/asf/qpid-site/tree/11295daa Diff: http://git-wip-us.apache.org/repos/asf/qpid-site/diff/11295daa Branch: refs/heads/asf-site Commit: 11295daa2f0e5d62d0dcba0f2f87c23894f63f00 Parents: 4fe27ca Author: Justin Ross <[email protected]> Authored: Tue Jul 3 09:45:37 2018 -0700 Committer: Justin Ross <[email protected]> Committed: Tue Jul 3 09:45:37 2018 -0700 ---------------------------------------------------------------------- scripts/gen-dispatch-release-docs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-site/blob/11295daa/scripts/gen-dispatch-release-docs ---------------------------------------------------------------------- diff --git a/scripts/gen-dispatch-release-docs b/scripts/gen-dispatch-release-docs index 0ff7d94..f872992 100755 --- a/scripts/gen-dispatch-release-docs +++ b/scripts/gen-dispatch-release-docs @@ -28,9 +28,9 @@ def gen_dispatch_docs(release, source_dir, output_dir): with working_dir(build_dir): call("cmake {}", source_dir) call("make") - call("make doc") + call("make docs") - man_build_dir = join(build_dir, "doc", "man") + man_build_dir = join(build_dir, "docs", "man") for f in list_dir(man_build_dir, "*.html.in"): input_file = join(man_build_dir, f) @@ -38,7 +38,7 @@ def gen_dispatch_docs(release, source_dir, output_dir): copy(input_file, output_file) - book_input_dir = join(source_dir, "doc", "new-book") + book_input_dir = join(source_dir, "docs", "books", "user-guide") book_input_file = join(book_input_dir, "book.adoc") book_output_dir = join(output_dir, "user-guide") book_output_file = join(book_output_dir, "index.html.in") --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
