lib/scan/manager.rb in scan-0.13.1 vs lib/scan/manager.rb in scan-0.14.0
- old
+ new
@@ -1,10 +1,14 @@
module Scan
class Manager
def work(options)
Scan.config = options
- FastlaneCore::PrintTable.print_values(config: options,
+ # Also print out the path to the used Xcode installation
+ # We go 2 folders up, to not show "Contents/Developer/"
+ values = Scan.config.values(ask: false)
+ values[:xcode_path] = File.expand_path("../..", FastlaneCore::Helper.xcode_path)
+ FastlaneCore::PrintTable.print_values(config: values,
hide_keys: [:destination, :slack_url],
title: "Summary for scan #{Scan::VERSION}")
return Runner.new.run
end