Skip to content

Commit

Permalink
Fix typo in match (#8757)
Browse files Browse the repository at this point in the history
  • Loading branch information
colorbox authored and hjanuschka committed Apr 3, 2017
1 parent 6981609 commit 9374648
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion match/lib/match/generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def self.profile_type_name(type)
return "AdHoc" if type == :adhoc
return "AppStore" if type == :appstore
return "InHouse" if type == :enterprise
return "Unkown"
return "Unknown"
end
end
end
2 changes: 1 addition & 1 deletion match/lib/match/runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def run(params)

UI.success "All required keys, certificates and provisioning profiles are installed 馃檶".green
rescue Spaceship::Client::UnexpectedResponse, Spaceship::Client::InvalidUserCredentialsError, Spaceship::Client::NoUserCredentialsError => ex
UI.error("An error occured while verifying your certificates and profiles with the Apple Developer Portal.")
UI.error("An error occurred while verifying your certificates and profiles with the Apple Developer Portal.")
UI.error("If you already have your certificates stored in git, you can run `fastlane match` in readonly mode")
UI.error("to just install the certificates and profiles without accessing the Dev Portal.")
UI.error("To do so, just pass `readonly: true` to your match call.")
Expand Down

0 comments on commit 9374648

Please sign in to comment.