diff --git a/xcode/commonFastfile b/xcode/commonFastfile index 75d9719..b697080 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -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",