forked from DreamDevLost/classdumpios
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathbuild_debug.sh
More file actions
executable file
·19 lines (17 loc) · 808 Bytes
/
build_debug.sh
File metadata and controls
executable file
·19 lines (17 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/zsh -x
XCP=$(/usr/bin/which xcpretty)
if [ -z $XCP ]; then
xcodebuild -target classdumpc -configuration Debug
xcodebuild -target classdump -configuration Debug
xcodebuild -target classdump-ios -configuration Debug
xcodebuild -target classdump-tvos -configuration Debug
xcodebuild -target classdumpc-ios -configuration Debug
xcodebuild -target classdumpc-tvos -configuration Debug
else
xcodebuild -target classdumpc -configuration Debug | $XCP
xcodebuild -target classdump -configuration Debug | $XCP
xcodebuild -target classdump-ios -configuration Debug | $XCP
xcodebuild -target classdump-tvos -configuration Debug | $XCP
xcodebuild -target classdumpc-ios -configuration Debug | $XCP
xcodebuild -target classdumpc-tvos -configuration Debug | $XCP
fi