Avoid calling xcodebuild twice
This commit is contained in:
parent
66c8f2707c
commit
97ca3baedc
@ -101,7 +101,9 @@ module OS
|
|||||||
# Xcode 4.3 xc* tools hang indefinately if xcode-select path is set thus
|
# Xcode 4.3 xc* tools hang indefinately if xcode-select path is set thus
|
||||||
raise if bad_xcode_select_path?
|
raise if bad_xcode_select_path?
|
||||||
|
|
||||||
raise unless which "xcodebuild"
|
xcodebuild = which "xcodebuild"
|
||||||
|
raise unless xcodebuild && xcodebuild != xcode43build
|
||||||
|
|
||||||
`xcodebuild -version 2>/dev/null` =~ /Xcode (\d(\.\d)*)/
|
`xcodebuild -version 2>/dev/null` =~ /Xcode (\d(\.\d)*)/
|
||||||
raise if $1.nil? or not $?.success?
|
raise if $1.nil? or not $?.success?
|
||||||
$1
|
$1
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user