fix: fix keychain name when trying to delete

This commit is contained in:
Malo Léon 2023-08-14 13:39:21 +02:00
parent 7155b7818c
commit 737ec11503

View File

@ -36,7 +36,7 @@ module Fastlane
Helper::IosCdHelper.check_required_fields(required_fields, creds.keys)
# 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(
name: creds['temp_keychain_user'].to_s
)