fastlane/lib/fastlane/actions/unlock_keychain.rb in fastlane-2.39.0.beta.20170614010012 vs fastlane/lib/fastlane/actions/unlock_keychain.rb in fastlane-2.39.0.beta.20170615010031

- old
+ new

@@ -20,9 +20,11 @@ end escaped_path = keychain_path.shellescape escaped_password = params[:password].shellescape + # Log the full path, useful for troubleshooting + UI.message("Unlocking keychain at path: #{escaped_path}") # unlock given keychain and disable lock and timeout commands << Fastlane::Actions.sh("security unlock-keychain -p #{escaped_password} #{escaped_path}", log: false) commands << Fastlane::Actions.sh("security set-keychain-settings #{escaped_path}", log: false) commands end