Skip to content

Commit f1ff3af

Browse files
committedMay 22, 2018
Adding script to deploy the documentation and updating README for description url
1 parent b8b1250 commit f1ff3af

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed
 

‎README.md

+5
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ logic.
5353
if you want to use it as an oracle or directly (see
5454
further).
5555

56+
## Documentation
57+
58+
You can find the
59+
[documentation online](https://meleagant.github.io/MOLOSS/index.html).
60+
5661
## Usage
5762

5863
The `moloss` executable takes as an argument a file containing the

‎doc/deploy.sh

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
git checkout master
2+
3+
make doc_html
4+
5+
git checkout gh-pages
6+
git pull
7+
8+
mv moloss.docdir/*.html ./
9+
git add *.html
10+
11+
mv moloss.docdir/*.css ./
12+
git add *.css
13+
14+
git commit -m "Updating doc"
15+
git push
16+
17+
git checkout master

0 commit comments

Comments
 (0)
Please sign in to comment.