From ff5cb4276a08b5f310e799aaaca4526e9dddaf50 Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Thu, 25 Apr 2019 13:52:05 +0300 Subject: [PATCH] fix wrong coalesce usage in syncCodeSigning lane --- xcode/commonFastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",