Commit bc497071 authored by Eloy Durán's avatar Eloy Durán

Merge pull request #1883 from modocache/print-xcodebuild-command

validator.rb: Print xcodebuild command on -v.
parents a88e48f7 21ad695f
...@@ -392,9 +392,10 @@ module Pod ...@@ -392,9 +392,10 @@ module Pod
end end
# @return [String] Executes xcodebuild in the current working directory and # @return [String] Executes xcodebuild in the current working directory and
# returns its output (bot STDOUT and STDERR). # returns its output (both STDOUT and STDERR).
# #
def xcodebuild def xcodebuild
UI.puts 'xcodebuild clean build -target Pods' if config.verbose?
`xcodebuild clean build -target Pods 2>&1` `xcodebuild clean build -target Pods 2>&1`
end end
......
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