fastlane/lib/fastlane/commands_generator.rb in fastlane-2.217.0 vs fastlane/lib/fastlane/commands_generator.rb in fastlane-2.218.0

- old
+ new

@@ -66,11 +66,11 @@ end # maybe already set by 'start' return if $troubleshoot UI.error("---") UI.error("Are you sure you want to enable '--troubleshoot'?") - UI.error("All commmands will run in full unfiltered output mode.") + UI.error("All commands will run in full unfiltered output mode.") UI.error("Sensitive data, like passwords, could be printed to the log.") UI.error("---") if UI.confirm("Do you really want to enable --troubleshoot") $troubleshoot = true end @@ -209,10 +209,10 @@ c.option('-f', '--force', 'Overwrite the existing README.md in the ./fastlane folder') c.action do |args, options| if ensure_fastfile ff = Fastlane::FastFile.new(File.join(FastlaneCore::FastlaneFolder.path || '.', 'Fastfile')) - UI.message("You don't need to run `fastlane docs` manually any more, this will be done automatically for you when running a lane.") + UI.message("You don't need to run `fastlane docs` manually anymore, this will be done automatically for you when running a lane.") Fastlane::DocsGenerator.run(ff) end end end