From 0e4b258b5673aee957646a99e5aabc0c70c80975 Mon Sep 17 00:00:00 2001 From: Seeker Date: Thu, 30 Jul 2020 21:06:23 -0700 Subject: [PATCH] bump-formula-pr: add `bump-` prefix to branch --- Library/Homebrew/dev-cmd/bump-formula-pr.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/dev-cmd/bump-formula-pr.rb b/Library/Homebrew/dev-cmd/bump-formula-pr.rb index 0e8144dee6..ebb1a84774 100644 --- a/Library/Homebrew/dev-cmd/bump-formula-pr.rb +++ b/Library/Homebrew/dev-cmd/bump-formula-pr.rb @@ -338,7 +338,7 @@ module Homebrew run_audit(formula, alias_rename, old_contents) formula.path.parent.cd do - branch = "#{formula.name}-#{new_formula_version}" + branch = "bump-#{formula.name}-#{new_formula_version}" git_dir = Utils.popen_read("git rev-parse --git-dir").chomp shallow = !git_dir.empty? && File.exist?("#{git_dir}/shallow") changed_files = [formula.path]