7
8
9
10
11
12
13
14
15
16
|
# File 'lib/fastlane/dependency_checker.rb', line 7
def self.check_xcode_select
unless `xcode-select -v`.include?('xcode-select version ')
Helper.log.fatal '#############################################################'
Helper.log.fatal '# You have to install the Xcode commdand line tools to use fastlane'
Helper.log.fatal '# Install the latest version of Xcode from the AppStore'
Helper.log.fatal '# Run xcode-select --install to install the developer tools'
Helper.log.fatal '#############################################################'
raise "Run 'xcode-select --install' and start fastlane again"
end
end
|