-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup
More file actions
executable file
·59 lines (42 loc) · 1.45 KB
/
setup
File metadata and controls
executable file
·59 lines (42 loc) · 1.45 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
55
56
57
58
59
#!/bin/bash
#1 Sync XcodeTemplates
rsync -r Resources/XcodeTemplates/ ~/Library/Developer/Xcode/Templates
echo .
echo ==================================================================
echo Templates are ready to be used 🚀
echo Files copied to ~/Library/Developer/Xcode/Templates
echo ==================================================================
echo .
#2 Sync Colors file
rsync -r Resources/AppColors.clr ~/Library/Colors/
echo .
echo ==================================================================
echo AppColors are ready to be used in Interface Builder 🚀
echo File copied to ~/Library/Colors
echo ==================================================================
echo .
#3 Generate Colors swift file
cd Resources
swiftgen
echo .
echo ==================================================================
echo AppColors are ready to be used in code 🚀
echo "UIColor(named: .colorName)"
echo ==================================================================
echo .
#4 AppComponents pod install
cd ../AppComponents
echo .
echo ==================================================================
echo AppComponents pod install 🚀
echo ==================================================================
echo .
pod install
#5 Main App pod install
cd ../App
echo .
echo ==================================================================
echo App pod install 🚀
echo ==================================================================
echo .
pod install