-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjazzy.command
More file actions
executable file
·54 lines (45 loc) · 1.53 KB
/
jazzy.command
File metadata and controls
executable file
·54 lines (45 loc) · 1.53 KB
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/sh
CWD="$(pwd)"
MY_SCRIPT_PATH=`dirname "${BASH_SOURCE[0]}"`
cd "${MY_SCRIPT_PATH}"
echo "Creating Docs for the iOS App\n"
rm -drf docs/iOS
jazzy --readme ./README.md \
-b -scheme,BlueVanClef-iOS \
--github_url https://github.com/RiftValleySoftware/BlueVanClef \
--title "BlueVanClef (iOS) Doumentation" \
--min_acl private \
--output docs/iOS \
--theme fullwidth
cp ./img/* docs/iOS/img
echo "Creating Docs for the MacOS App\n"
rm -drf docs/MacOS
jazzy --readme ./README.md \
-b -scheme,BlueVanClef-MacOS \
--github_url https://github.com/RiftValleySoftware/BlueVanClef \
--title "BlueVanClef (MacOS) Doumentation" \
--min_acl private \
--output docs/MacOS \
--theme fullwidth
cp ./img/* docs/MacOS/img
echo "Creating Docs for the TVOS App\n"
rm -drf docs/TVOS
jazzy --readme ./README.md \
-b -scheme,BlueVanClef-TVOS \
--github_url https://github.com/RiftValleySoftware/BlueVanClef \
--title "BlueVanClef (TVOS) Doumentation" \
--min_acl private \
--output docs/TVOS \
--theme fullwidth
cp ./img/* docs/TVOS/img
echo "Creating Docs for the WatchOS App\n"
rm -drf docs/WatchOS
jazzy --readme ./README.md \
-b -scheme,BlueVanClef-WatchOS-Extension \
--github_url https://github.com/RiftValleySoftware/BlueVanClef \
--title "BlueVanClef (WatchOS) Doumentation" \
--min_acl private \
--output docs/WatchOS \
--theme fullwidth
cp ./img/* docs/WatchOS/img
cd "${CWD}"