aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/pull.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/pull.rb b/Library/Homebrew/cmd/pull.rb
index c2009cdd7..4cfcb30a2 100644
--- a/Library/Homebrew/cmd/pull.rb
+++ b/Library/Homebrew/cmd/pull.rb
@@ -127,8 +127,8 @@ module Homebrew
if ARGV.include? '--bump'
odie 'Can only bump one changed formula' unless changed_formulae.length == 1
- f = changed_formulae.first
- subject = "#{f.name} #{f.version}"
+ formula = changed_formulae.first
+ subject = "#{formula.name} #{formula.version}"
ohai "New bump commit subject: #{subject}"
system "/bin/echo -n #{subject} | pbcopy"
message = "#{subject}\n\n#{message}"