aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorMike McQuaid2014-11-23 11:21:26 +0000
committerMike McQuaid2014-11-23 11:21:26 +0000
commitc616fe737f2d73d3f17be71693afc38c2a195b07 (patch)
treee66d0cbcfbb16027dfff7b6a9d5a9db8d74db73d /Library/Homebrew/cmd
parent14c4c2fd67e9a68e0a717b7a959e5607186c2b84 (diff)
downloadbrew-c616fe737f2d73d3f17be71693afc38c2a195b07.tar.bz2
brew-pull: die when bumping multiple formulae.
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/pull.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/pull.rb b/Library/Homebrew/cmd/pull.rb
index 727a12555..7824b765f 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}"