From: Jason Etheridge Date: Mon, 28 Jan 2019 02:55:43 +0000 (-0500) Subject: fix documentation build X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f53cf25c87af675f50e935e6bea0c5a6edfe9668;p=working%2Frandom.git fix documentation build --- diff --git a/installer/stretch/eg_stretch_installer.sh b/installer/stretch/eg_stretch_installer.sh index 7af7c542f..3e0a95ee9 100755 --- a/installer/stretch/eg_stretch_installer.sh +++ b/installer/stretch/eg_stretch_installer.sh @@ -1012,11 +1012,11 @@ function build_the_docs { echo _.-~= Building the AsciiDoc output formats date # build HTML - su - opensrf sh -c 'cd /home/opensrf/Evergreen/docs/ ; asciidoc root.adoc ; echo Return Value = $?' + su - test sh -c 'cd /home/test/Evergreen/docs/ ; asciidoc root.adoc ; echo Return Value = $?' # build PDF - su - opensrf sh -c 'cd /home/opensrf/Evergreen/docs/ ; a2x --fop --fop-opts="-q" root.adoc ; echo Return Value = $?' + su - test sh -c 'cd /home/test/Evergreen/docs/ ; a2x --fop --fop-opts="-q" root.adoc ; echo Return Value = $?' # build EPUB - su - opensrf sh -c 'cd /home/opensrf/Evergreen/docs/ ; a2x --no-xmllint --format epub root.adoc ; echo Return Value = $?' + su - test sh -c 'cd /home/test/Evergreen/docs/ ; a2x --no-xmllint --format epub root.adoc ; echo Return Value = $?' echo End of Building the AsciiDoc output formats =~-._ }