From f653cb8340de3c9acd1ddfb75c1a8c8f3195834a Mon Sep 17 00:00:00 2001 From: Martin Afanasjew Date: Wed, 4 May 2016 02:46:21 +0200 Subject: [PATCH] pull: fix references to renamed variable Fix bug originating in #132. --- Library/Homebrew/cmd/pull.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/cmd/pull.rb b/Library/Homebrew/cmd/pull.rb index 14a7df5c99..6f7136cf8f 100644 --- a/Library/Homebrew/cmd/pull.rb +++ b/Library/Homebrew/cmd/pull.rb @@ -175,10 +175,10 @@ module Homebrew orig_subject = message.empty? ? "" : message.lines.first.chomp bump_subject = subject_for_bump(formula, old_versions, new_versions) if do_bump - odie "No version changes found for #{formula.name}" if subject.nil? + odie "No version changes found for #{formula.name}" if bump_subject.nil? unless orig_subject == bump_subject - ohai "New bump commit subject: #{subject}" - pbcopy subject unless ARGV.include? "--no-pbcopy" + ohai "New bump commit subject: #{bump_subject}" + pbcopy bump_subject unless ARGV.include? "--no-pbcopy" message = "#{bump_subject}\n\n#{message}" end elsif bump_subject != orig_subject && !bump_subject.nil?