308
309
310
311
312
313
314
315
316
317
|
# File 'fastlane_core/lib/fastlane_core/project.rb', line 308
def xcodebuild_parameters
proj = []
proj << "-workspace #{options[:workspace].shellescape}" if options[:workspace]
proj << "-scheme #{options[:scheme].shellescape}" if options[:scheme]
proj << "-project #{options[:project].shellescape}" if options[:project]
proj << "-configuration #{options[:configuration].shellescape}" if options[:configuration]
proj << "-xcconfig #{options[:xcconfig].shellescape}" if options[:xcconfig]
return proj
end
|