Class: Fastlane::Actions::XctoolAction

Inherits:
Object
  • Object
show all
Defined in:
lib/fastlane/actions/xctool.rb

Class Method Summary collapse

Class Method Details

.run(params) ⇒ Object



4
5
6
7
8
9
10
# File 'lib/fastlane/actions/xctool.rb', line 4

def self.run(params)
  unless Helper.is_test?
    raise "xctool not installed, please install using `brew install xctool`".red if `which xctool`.length == 0
  end
  
  Actions.sh("xctool " + params.join(" "))
end