File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ def release_version_next
126126 VERSION_FORMATTER . release_version ( next_calculated_release_version )
127127end
128128
129- def release_is_hotfix ?
129+ def is_current_release_hotfix ?
130130 # Read the current release version from the .xcconfig file and parse it into an AppVersion object
131131 current_version = VERSION_FORMATTER . parse ( VERSION_FILE . read_release_version )
132132 # Calculate and return whether the release version is a hotfix
Original file line number Diff line number Diff line change 392392 # @param skip_confirm [Boolean] Whether to skip confirmation prompts
393393 #
394394 lane :finalize_release do |skip_confirm : false |
395- UI . user_error! ( 'To finalize a hotfix, please use the `finalize_hotfix_release` lane instead' ) if release_is_hotfix ?
395+ UI . user_error! ( 'To finalize a hotfix, please use the `finalize_hotfix_release` lane instead' ) if is_current_release_hotfix ?
396396
397397 ensure_git_branch_is_release_branch!
398398 ensure_git_status_clean
You can’t perform that action at this time.
0 commit comments