-
Notifications
You must be signed in to change notification settings - Fork 129
/
update-wiki.py
56 lines (43 loc) · 1.15 KB
/
update-wiki.py
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
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python2
import sys, os, subprocess
def try_run(cmd):
if os.system(cmd) != 0:
sys.exit(1)
def merge(f1, f2, from_, to):
"""
Merges lines from line containting 'from_' to line containing 'to'
from f1 to f2
"""
lines1, inside = [], False
for line in open(f1, "r").readlines():
if from_ in line.strip("\r\n\t "):
inside = True
elif to in line.strip("\r\n\t "):
inside = False
if inside:
lines1.append(line)
lines2, inside = [], False
for line in open(f2, "r").readlines():
if from_ in line.strip("\r\n\t "):
inside = True
lines2 += lines1
elif to in line.strip("\r\n\t "):
inside = False
elif not inside:
lines2.append(line)
open(f2, "w").write("".join(lines2))
def main():
if not os.path.exists("sc-controller.wiki/.git"):
try_run("git clone 'https://github.com/kozec/sc-controller.wiki.git'")
os.chdir("sc-controller.wiki")
try_run("git pull")
try_run("git reset master")
merge(
'../docs/actions.md',
'Custom-Action-Examples-and-Explanations.md',
'# <a name="actions">',
'# <a name="examples2">'
)
try_run("git commit -a -m \"Updated wiki from docs\"")
if __name__ == "__main__":
main()