match/lib/match/encrypt.rb in fastlane-2.29.1 vs match/lib/match/encrypt.rb in fastlane-2.30.0.beta.20170510010041

- old
+ new

@@ -14,12 +14,10 @@ password = item.password if item end unless password if !UI.interactive? - UI.error "Neither the MATCH_PASSWORD environment variable nor the local keychain contained a password." - UI.error "Bailing out instead of asking for a password, since this is non-interactive mode." - UI.error "Try setting the MATCH_PASSWORD environment variable, or temporarily enable interactive mode to store a password." + UI.error "No password found neither in environment nor in local keychain. Bailing out as in non interactive mode." else UI.important "Enter the passphrase that should be used to encrypt/decrypt your certificates" UI.important "This passphrase is specific per repository and will be stored in your local keychain" UI.important "Make sure to remember the password, as you'll need it when you run match on a different machine" password = ChangePassword.ask_password(confirm: true)