Commit b7170962 authored by Dominik Charousset's avatar Dominik Charousset

Add upload of manual versions to update_doc script

parent 321b0c5b
#!/bin/bash #!/bin/bash
rsync -r -v -u --delete --exclude=.DS_Store html/ hylos.cpt.haw-hamburg.de:/prog/www/w3/www.actor-framework.org/html/doc host=hylos.cpt.haw-hamburg.de
htmlroot=/prog/www/w3/www.actor-framework.org/html
echo "build doxygen target"
make -C build/ doc || ninja -C build/ doc || exit
echo "build manual"
make -C manual || exit
echo "upload doxygen documentation"
rsync -r -v -u --delete --exclude=.DS_Store html/ $host:$htmlroot/doc || exit
echo "upload HTML manual"
scp manual/build-html/manual.html $host:$htmlroot/manual/index.html || exit
echo "upload PDF manual"
scp manual/build-pdf/manual.pdf $host:$htmlroot/pdf || exit
echo "done"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment