diff --git a/xcode/commonFastfile b/xcode/commonFastfile index 36ece68..fe6cd0a 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -244,6 +244,9 @@ lane :ManuallyUpdateCodeSigning do |options| # need to check, because saving changes with delete is another function (update repo if needed) files_diff = old_files - files_to_commit + # match can not work with both save/delete functionality `You can't provide both files_to_delete and files_to_commit right now` + # to avoid this we use storage twice if needed + if files_diff.length > 0 storage = storage_conf.call encryption = encryption_conf_for_storage.call(storage)