You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
611 B
17 lines
611 B
#!/bin/sh
|
|
|
|
#The documentation is built statically and does not belong to the normal build process with configure and make
|
|
#Its updating is part of the development process, not packaging and running.
|
|
#The correct out/ dir is already part of git.
|
|
|
|
#This file is not part of the template because it is possible that different programs have more or different numbers of translations.
|
|
|
|
set -e
|
|
asciidoctor index.adoc -o out/index.html
|
|
|
|
asciidoctor german.adoc -o out/german.html
|
|
|
|
asciidoctor english.adoc -o out/english.html
|
|
|
|
cp ../desktop/images/favicon.* out/
|
|
cp ../desktop/images/1248-transparent.png out/logo.png
|
|
|