fastlane/lib/fastlane/lane_manager.rb in fastlane-2.14.2 vs fastlane/lib/fastlane/lane_manager.rb in fastlane-2.15.0.beta.20170213032052

- old
+ new

@@ -209,16 +209,16 @@ private_class_method :find_dotenv_directory, :load_dot_envs_from def self.print_lane_context return if Actions.lane_context.empty? - if $verbose + if FastlaneCore::Globals.verbose? UI.important 'Lane Context:'.yellow UI.message Actions.lane_context return end - # Print a nice table unless in $verbose mode + # Print a nice table unless in FastlaneCore::Globals.verbose? mode rows = Actions.lane_context.collect do |key, content| [key, content.to_s] end rows = FastlaneCore::PrintTable.limit_row_size(rows)