fix: crendential typo in ios helper #8

Merged
malo merged 1 commits from fix/type-credentials into main 2023-05-15 16:21:22 +00:00

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