Commit 8ae12cad authored by Samuel E. Giddins's avatar Samuel E. Giddins

Merge pull request #3657 from CocoaPods/seg-integration-dev-tools

[IntegrationSpecs] Use developer tools when available
parents 84e84ad5 26cb70d2
......@@ -50,6 +50,11 @@ require 'clintegracon'
require 'integration/xcodeproj_project_yaml'
require 'tmpdir'
if (developer_bin = `xcode-select -p 2>/dev/null`.strip) && $?.success?
developer_bin = Pathname(developer_bin) + 'usr/bin'
ENV['PATH'] = "#{developer_bin}#{File::PATH_SEPARATOR}#{ENV['PATH']}"
end
CLIntegracon.configure do |c|
c.spec_path = ROOT + 'spec/cocoapods-integration-specs'
c.temp_path = ROOT + 'tmp'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment