-
-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathmakedoc
More file actions
executable file
·48 lines (34 loc) · 724 Bytes
/
makedoc
File metadata and controls
executable file
·48 lines (34 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#/bin/bash
# Creating the docs
cd doc/
python createStats.py
cd ../
python2 makedoc.py
# Cleaning the links to github
cd gitbook
grep -rli '](/bomanz' * | xargs -i@ sed -i 's/](\/bomanz\//](https\:\/\/github.com\/kelu124\/bomanz\/tree\/master\//g' @
grep -rli '](/' * | xargs -i@ sed -i 's/](\//](https\:\/\/github.com\/kelu124\/echomods\/tree\/master\//g' @
cd ..
cd gh-pages/
./createMD.sh
./makeprez
git add * -v
git commit -m "Autopush"
git push
cd ../gitbook/
git add * -v
git commit -m "Autopush"
git push
cd ../../bomanz/
git add * -v
git commit -m "Autopush"
git push
cd ../echomods/
git add * -v
git commit -m "Autopush"
git push
cd ../oup/
python do.py
git add * -v
git commit -m "Autopush"
git push