From c616fe737f2d73d3f17be71693afc38c2a195b07 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sun, 23 Nov 2014 11:21:26 +0000 Subject: [PATCH] brew-pull: die when bumping multiple formulae. --- Library/Homebrew/cmd/pull.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/pull.rb b/Library/Homebrew/cmd/pull.rb index 727a12555d..7824b765fa 100644 --- a/Library/Homebrew/cmd/pull.rb +++ b/Library/Homebrew/cmd/pull.rb @@ -124,7 +124,7 @@ module Homebrew message = `git log HEAD^.. --format=%B` if ARGV.include? '--bump' - onoe 'Can only bump one changed formula' unless changed_formulae.length == 1 + odie 'Can only bump one changed formula' unless changed_formulae.length == 1 f = changed_formulae.first subject = "#{f.name} #{f.version}" ohai "New bump commit subject: #{subject}"