From: Michael Stapelberg Date: Wed, 26 Oct 2016 06:46:39 +0000 (+0200) Subject: travis/docs.sh: call asciidoc directly X-Git-Tag: 4.13~12^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=refs%2Fpull%2F2518%2Fhead;p=i3%2Fi3 travis/docs.sh: call asciidoc directly …instead of the no longer existing docs-clean and docs targets. --- diff --git a/travis/docs.sh b/travis/docs.sh index 35bc12bb..d452e9b6 100755 --- a/travis/docs.sh +++ b/travis/docs.sh @@ -3,9 +3,14 @@ set -e set -x -make clean-docs docs ASCIIDOC="asciidoc -a linkcss -a stylesdir=http://i3wm.org/css -a scriptsdir=http://i3wm.org/js --backend=xhtml11 -f docs/asciidoc-git.conf" +for f in $(grep '\.html$' debian/i3-wm.docs | grep -v 'docs/refcard.html' | grep -v 'docs/lib-i3test') +do + asciidoc -a linkcss -a stylesdir=http://i3wm.org/css -a scriptsdir=http://i3wm.org/js --backend=xhtml11 -f docs/asciidoc-git.conf $(dirname $f)/$(basename $f .html) +done ./docs/i3-pod2html i3-dmenu-desktop man/i3-dmenu-desktop.html ./docs/i3-pod2html i3-save-tree man/i3-save-tree.html +./docs/i3-pod2html build/testcases/lib/i3test.pm docs/lib-i3test.html +./docs/i3-pod2html testcases/lib/i3test/Test.pm docs/lib-i3test-test.html for file in $(sed 's/\.1$/.man/g' debian/i3-wm.manpages) do [ -f "$file" ] && asciidoc -a linkcss -a stylesdir=http://i3wm.org/css -a scriptsdir=http://i3wm.org/js --backend=xhtml11 -f docs/asciidoc-git.conf "$file"