fix: rollback native actions calls in helper

This commit is contained in:
Malo Léon 2023-05-02 09:41:34 +02:00
parent 1c6b04e511
commit b67a267ca5

View File

@ -8,7 +8,7 @@ module Fastlane
# Define method to delete temporary keychain # Define method to delete temporary keychain
def self.delete_temp_keychain(name) def self.delete_temp_keychain(name)
if File.exist?(File.expand_path("~/Library/Keychains/#{name}-db")) if File.exist?(File.expand_path("~/Library/Keychains/#{name}-db"))
other_action.deelete_keychain.run( Actions::DeleteKeychainAction.run(
name: name name: name
) )
end end
@ -16,7 +16,7 @@ module Fastlane
# Define method to create temporary keychain # Define method to create temporary keychain
def self.create_temp_keychain(name, password) def self.create_temp_keychain(name, password)
other_actions.create_keychain_action.run( Actions::CreateKeychainAction.run(
name: name, name: name,
password: password, password: password,
unlock: false, unlock: false,