Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit c61db244 authored by Achim Gsell's avatar Achim Gsell
Browse files

Fix bug in manual2pdf if no TeX output should be created

parent ebd0c17a
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ sed -i.bak "s/@REVDATE@/${revdate}/" Manual.asciidoc ...@@ -26,7 +26,7 @@ sed -i.bak "s/@REVDATE@/${revdate}/" Manual.asciidoc
if [[ "${create_tex_output}" == "no" ]]; then if [[ "${create_tex_output}" == "no" ]]; then
asciidoctor -b docbook5 -d book "${input_fname}" || exit 1 asciidoctor -b docbook5 -d book "${input_fname}" || exit 1
dblatex --texstyle="${texstyle}" -V -P "table.default.position=[hp]" -t pdf "${xml_fname}" || exit 2 #dblatex --texstyle="${texstyle}" -V -P "table.default.position=[hp]" -t pdf "${xml_fname}" || exit 2
dblatex -V -P "table.default.position=[hp]" -t pdf "${xml_fname}" || exit 2 dblatex -V -P "table.default.position=[hp]" -t pdf "${xml_fname}" || exit 2
else else
asciidoctor -v -b docbook5 -d book "${input_fname}" || exit 1 asciidoctor -v -b docbook5 -d book "${input_fname}" || exit 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment