match/lib/match/change_password.rb in fastlane-2.26.0.beta.20170406010019 vs match/lib/match/change_password.rb in fastlane-2.26.0

- old
+ new

@@ -5,10 +5,9 @@ ensure_ui_interactive to ||= ChangePassword.ask_password(message: "New passphrase for Git Repo: ", confirm: false) from ||= ChangePassword.ask_password(message: "Old passphrase for Git Repo: ", confirm: true) GitHelper.clear_changes workspace = GitHelper.clone(params[:git_url], params[:shallow_clone], manual_password: from, skip_docs: params[:skip_docs], branch: params[:git_branch]) - GitHelper.check_push_repo_permission(workspace, params[:git_branch]) Encrypt.new.clear_password(params[:git_url]) Encrypt.new.store_password(params[:git_url], to) message = "[fastlane] Changed passphrase" GitHelper.commit_changes(workspace, message, params[:git_url], params[:git_branch])