fix: crendential typo in ios helper

This commit is contained in:
Malo Léon 2023-05-15 18:19:02 +02:00
parent e003011b9a
commit 68bf5a1502

View File

@ -32,9 +32,9 @@ module Fastlane
# Parse credential file
def self.parseIosCredentials(ios_directory)
if File.exist?("#{ios_directory}/ios_crendentials.json")
if File.exist?("#{ios_directory}/ios_credentials.json")
# Read file and decrypt it
file = File.read("#{ios_directory}/ios_crendentials.json")
file = File.read("#{ios_directory}/ios_credentials.json")
JSON.parse(file)
else