diff options
author | David Robillard <d@drobilla.net> | 2020-11-17 11:13:01 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-17 11:13:01 +0100 |
commit | aac7b8d830146a6453218a1016e7126500f4cecb (patch) | |
tree | b6f0067cc117ab0bb0fa9759a29529ce0b091e43 | |
parent | b1991fe8765544cf69efa1c4a8fe3c46b10b5c70 (diff) | |
download | serd-aac7b8d830146a6453218a1016e7126500f4cecb.tar.gz serd-aac7b8d830146a6453218a1016e7126500f4cecb.tar.bz2 serd-aac7b8d830146a6453218a1016e7126500f4cecb.zip |
Fix broken links in documentation
-rw-r--r-- | .gitlab-ci.yml | 4 | ||||
-rw-r--r-- | wscript | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5c92cdb7..16992228 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -88,7 +88,7 @@ test:x64_dbg: - groff -Thtml -P -l -P -r -man -wall doc/serdi.1 > build/doc/serdi.html needs: ["x64_dbg"] artifacts: - paths: ["build/coverage", "build/doc"] + paths: ["build/index.html", "build/coverage", "build/doc"] x64_rel: @@ -220,7 +220,7 @@ pages: - mv build/doc/*.svg .public/images - mv build/doc/html/ .public/doc/html - mv build/coverage/ .public/coverage - - mv build/doc/index.html .public/index.html + - mv build/index.html .public/index.html - mv build/doc/serdi.html .public/man/serdi.html - mv .public public artifacts: @@ -267,7 +267,7 @@ def build(bld): autowaf.build_dox(bld, 'SERD', SERD_VERSION, top, out) bld(features='subst', source='doc/index.html.in', - target='doc/index.html', + target='index.html', install_path='', name='index', SERD_VERSION=SERD_VERSION) |