Merge pull request #100 from TouchInstinct/fix/syncCodeSigning

fix wrong coalesce usage in syncCodeSigning lane
This commit is contained in:
Ivan Smolin 2019-04-25 13:56:51 +03:00 committed by GitHub
commit d64533410d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ lane :syncCodeSigning do |options|
username: options[:username] || options[:apple_id],
team_id: options[:team_id],
type: options[:type],
readonly: options[:readonly] || true,
readonly: options[:readonly].nil? ? true : options[:readonly],
storage_mode: "git",
git_url: options[:git_url],
git_branch: "fastlane_certificates",