lib/pilot/manager.rb in pilot-1.10.0 vs lib/pilot/manager.rb in pilot-1.10.1

- old
+ new

@@ -42,18 +42,18 @@ @app ||= Spaceship::Application.find(config[:app_identifier]) UI.user_error!("Couldn't find app '#{config[:app_identifier]}' on the account of '#{config[:username]}' on iTunes Connect") unless @app app_id ||= @app.apple_id end - app_id ||= ask("Could not automatically find the app ID, please enter it here (e.g. 956814360): ") + app_id ||= UI.input("Could not automatically find the app ID, please enter it here (e.g. 956814360): ") return app_id end def fetch_app_identifier result = config[:app_identifier] result ||= FastlaneCore::IpaFileAnalyser.fetch_app_identifier(config[:ipa]) - result ||= ask("Please enter the app's bundle identifier: ") + result ||= UI.input("Please enter the app's bundle identifier: ") UI.verbose("App identifier (#{result})") return result end end end