Statistics
| Branch: | Tag: | Revision:

root / ci / make_docs.sh @ 4908cdde

History | View | Annotate | Download (247 Bytes)

1
#!/bin/sh
2

    
3
# Copied from main Synnefo repository
4
# snf-vncauthproxy has no Sphinx-based docs yet
5
exit 0
6

    
7
set -e
8

    
9
DOCS_DIR=$1
10

    
11
cd docs
12
make html
13
cd -
14

    
15
mkdir -p $DOCS_DIR
16
mv -n docs/_build/html/* $DOCS_DIR
17

    
18
echo "Moved docs to to: $(pwd)/$DOCS_DIR"