Skip to content

Commit

Permalink
fix ruby error
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Cassidy <steve.cassidy@mq.edu.au>
  • Loading branch information
stevecassidy committed Dec 6, 2024
1 parent 5b64e4a commit 5f14676
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions app/ios/App/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ def delete_temp_keychain()
) if File.exist? File.expand_path("~/Library/Keychains/#{KEYCHAIN_NAME}-db")
end

def create_temp_keychain()
def ensure_temp_keychain()
delete_temp_keychain()
create_keychain(
name: KEYCHAIN_NAME,
password: KEYCHAIN_PASSWORD,
Expand All @@ -32,11 +33,6 @@ def create_temp_keychain()
)
end

def ensure_temp_keychain()
delete_temp_keychain()
create_temp_keychain(KEYCHAIN_NAME, KEYCHAIN_PASSWORD)
end

platform :ios do

lane :closed_beta_browserstack do
Expand Down

0 comments on commit 5f14676

Please sign in to comment.