fix: fix keychain name when trying to delete #32

Merged
malo merged 1 commits from fix/ios-keychain-name into main 2023-08-14 11:39:48 +00:00
Showing only changes of commit 737ec11503 - Show all commits

View File

@ -36,7 +36,7 @@ module Fastlane
Helper::IosCdHelper.check_required_fields(required_fields, creds.keys) Helper::IosCdHelper.check_required_fields(required_fields, creds.keys)
# Delete keychain if existing # Delete keychain if existing
if File.exist?(File.expand_path("~/Library/Keychains/#{name}-db")) if File.exist?(File.expand_path("~/Library/Keychains/#{creds['temp_keychain_user']}-db"))
other_action.delete_keychain( other_action.delete_keychain(
name: creds['temp_keychain_user'].to_s name: creds['temp_keychain_user'].to_s
) )