fastlane/lib/fastlane/lane_manager.rb in fastlane-2.206.1 vs fastlane/lib/fastlane/lane_manager.rb in fastlane-2.206.2

- old
+ new

@@ -106,10 +106,10 @@ UI.message("Welcome to fastlane! Here's what your app is set up to do:") puts(table) fastlane_command = Helper.bundler? ? "bundle exec fastlane" : "fastlane" - i = UI.input("Which number would you like run?") + i = UI.input("Which number would you like to run?") i = i.to_i - 1 if i >= 0 && available[i] selection = available[i].last.pretty_name UI.important("Running lane `#{selection}`. Next time you can do this by directly typing `#{fastlane_command} #{selection}` 🚀.")