fix wrong coalesce usage in syncCodeSigning lane

This commit is contained in:
Ivan Smolin 2019-04-25 13:52:05 +03:00
parent 631d186d50
commit ff5cb4276a
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",