File tree 4 files changed +17
-5
lines changed
4 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 4
4
* .jl.mem
5
5
* .swp
6
6
docs /build
7
+ docs /gh-pages
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ After switching to package manager prompt (using ']') type:
32
32
33
33
## Documentation (more to come)
34
34
35
- For now it is just [ REFERENCE guide] ( REFERENCE.md ) .
35
+ For now it is just [ REFERENCE guide] ( https://slimgroup.github.io/JOLI.jl ) .
36
36
37
37
## Examples (more to come)
38
38
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
set -x
3
3
4
- rm -rvf build
4
+ rm -rf build
5
5
julia make.jl || exit 1
6
- # test -e build/index.md || exit 1
7
- # mv -fv build/index.md ../REFERENCE.md
8
- # perl -pi -e 's/index\.md/REFERENCE.md/g' ../REFERENCE.md
6
+ test -e build/index.html || exit 1
7
+ open build/index.html
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ set -x
3
+
4
+ rm -rf gh-pages
5
+ test -e build/index.html || exit 1
6
+ git clone --quiet --branch gh-pages --single-branch
[email protected] :slimgroup/JOLI.jl.git gh-pages
|| exit 1
7
+ cd gh-pages || exit 1
8
+ git checkout gh-pages || exit 1
9
+ rsync -avH ../build/ ./ || exit 1
10
+ git add --all || exit 1
11
+ git commit -m " Docs on $( date) " || exit 1
12
+ git push
You can’t perform that action at this time.
0 commit comments