lib/cocoapods-packager/builder.rb in ty-cocoapods-packager-1.5.12 vs lib/cocoapods-packager/builder.rb in ty-cocoapods-packager-1.5.13
- old
+ new
@@ -345,9 +345,11 @@
if defined?(Pod::DONT_CODESIGN)
args = "#{args} CODE_SIGN_IDENTITY=\"\" CODE_SIGNING_REQUIRED=NO"
end
command = "xcrun xcodebuild #{defines} #{args} CONFIGURATION_BUILD_DIR=#{build_dir} clean build -configuration #{config} -target #{target} -project #{project_root}/Pods.xcodeproj 2>&1"
+ puts "execute command: #{command}"
+
output = `#{command}`.lines.to_a
if $?.exitstatus != 0
puts UI::BuildFailedReport.report(command, output)