mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
94671df753
Summary: The path to the iOS 8.3 SDK does not exist when only Xcode 6.4 is installed. This uses a more general folder name, which (at least) the 8.4 SDK symlinks to. I haven't verified this on Xcode 6.3, so I'd appreciate it if someone could confirm that this path exists there too! :)
11 lines
121 B
Awk
11 lines
121 B
Awk
BEGIN {
|
|
FS = ":"
|
|
RS = ","
|
|
}
|
|
|
|
/"Version"/ {
|
|
version = substr($2, 2, length($2) - 2)
|
|
print int(version)
|
|
exit 0
|
|
}
|