-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathupdate_html.sh
executable file
·54 lines (36 loc) · 1.3 KB
/
update_html.sh
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
#!/bin/bash
# Remove all html-files
rm html/*.html
# Core Set starting decks with obvious cards
python3 make_html.py 01 add-neutral
# Core Set starting decks without obvious cards
python3 make_html.py 01 add-neutral no-obvious
# Creation and Control decks
python3 make_html.py 03 add-neutral no-obvious
# Honor and Profit decks
python3 make_html.py 05 add-neutral no-obvious
# Core Set + Genesis
python3 make_html.py 01,02 no-obvious
# Core Set + Creation and Control
python3 make_html.py 01,03 no-obvious
# Core Set + Genesis + Creation and Control
python3 make_html.py 01,02,03 no-obvious
# Core Set + Genesis + Creation and Control + Spin
# python3 make_html.py 01,02,03,04 no-obvious
# Core Set + Genesis + Creation and Control + Spin + Honor and Profit
# python3 make_html.py 01,02,03,04,05 no-obvious
# Remove unwanted files
rm "html/Anarch - Core.html"
rm "html/Criminal - Core.html"
rm "html/Jinteki - Core.html"
rm "html/NBN - Core.html"
rm "html/Weyland Consortium - Core.html"
# Remove useless files
rm "html/Neutral Runner - Core.html"
rm "html/Neutral Runner + obvious - Core.html"
rm "html/Neutral Runner - CaC.html"
rm "html/Neutral Runner - HaP.html"
rm "html/Neutral Corp - Core.html"
rm "html/Neutral Corp + obvious - Core.html"
rm "html/Neutral Corp - HaP.html"
rm "html/Neutral Corp - CaC.html"