aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2013-08-04 08:25:51 -0700
committerMike McQuaid2013-08-04 08:25:51 -0700
commitda904368d4415c2e98b92a9d2880830fd417f990 (patch)
tree632b2d0b94e7b95eb25251a40f1a3b2962fbde25 /Library
parent5bbe98f3a1ea076006dcf650d339c88972ae4708 (diff)
downloadhomebrew-da904368d4415c2e98b92a9d2880830fd417f990.tar.bz2
bottles: update version regex messaging.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/bottle.rb2
-rw-r--r--Library/Homebrew/formulary.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/bottle.rb b/Library/Homebrew/cmd/bottle.rb
index 569bc03ed..379ba9e93 100644
--- a/Library/Homebrew/cmd/bottle.rb
+++ b/Library/Homebrew/cmd/bottle.rb
@@ -53,7 +53,7 @@ module Homebrew extend self
filename = bottle_filename f, bottle_revision
if bottle_filename_formula_name(filename).empty?
- return ofail "Add a new version regex to version.rb to parse the bottle filename."
+ return ofail "Add a new regex to bottle_version.rb to parse the bottle filename."
end
bottle_path = Pathname.pwd/filename
diff --git a/Library/Homebrew/formulary.rb b/Library/Homebrew/formulary.rb
index 34ce76822..2b2e1d861 100644
--- a/Library/Homebrew/formulary.rb
+++ b/Library/Homebrew/formulary.rb
@@ -62,7 +62,7 @@ class Formulary
name_without_version = bottle_filename_formula_name @bottle_filename
if name_without_version.empty?
if ARGV.homebrew_developer?
- opoo "Add a new version regex to version.rb to parse this filename."
+ opoo "Add a new regex to bottle_version.rb to parse this filename."
end
@name = bottle_name
else