Skip to content

Commit

Permalink
trying to fix fastfile 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 bd49d56 commit 7dac906
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/ios/App/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ BROWSERSTACK_ACCESS_KEY = ENV["BROWSERSTACK_ACCESS_KEY"]


# keychain details are hard-coded here with a generated password
keychain_name = 'keychain'
keychain_name = "keychain"
keychain_password = SecureRandom.hex(32)

def delete_temp_keychain()
delete_keychain(
name: keychain_name
) if File.exist? File.expand_path("~/Library/Keychains/#{keychain_name}-db")
) if File.exist? File.expand_path("~/Library/Keychains/keychain-db")
end

def create_temp_keychain()
Expand Down

0 comments on commit 7dac906

Please sign in to comment.