Skip to content
GitLab
Explore
Sign in
qgroundcontrol
tools
get_xcode_version.sh
Find file
Normal view
Permalink
get_xcode_version.sh
71 B
Newer
Older
Gotta handle old versions of Xcode that don’t know anything about that.
Gus Grubba
committed
Apr 17, 2017
1
2
3
#!/bin/bash
xcodebuild
-version
2>&1 |
(
head
-n1
)
|
awk
'{print $2}'