diff options
| author | Tony Kelman | 2016-06-08 08:53:11 -0700 | 
|---|---|---|
| committer | Martin Afanasjew | 2016-06-08 17:53:11 +0200 | 
| commit | fe894678322261a285ec51a27c1fb766061dee67 (patch) | |
| tree | 8f4824e061f466d353cd7116516cda21ca62a265 | |
| parent | 2ca6dbbe9d94b5d295f46f7a1d3a12ade3aa3f08 (diff) | |
| download | brew-fe894678322261a285ec51a27c1fb766061dee67.tar.bz2 | |
exceptions: Remove duplicate "a" in "must be built from source" error (#339)
otherwise would get "cannot be installed as a a binary package"
since `package_text` contains "a binary package" in the singular case
| -rw-r--r-- | Library/Homebrew/exceptions.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb index 765172e15..d755f48c4 100644 --- a/Library/Homebrew/exceptions.rb +++ b/Library/Homebrew/exceptions.rb @@ -400,7 +400,7 @@ class BuildToolsError < RuntimeError      super <<-EOS.undent        The following #{formula_text}:          #{formulae.join(", ")} -      cannot be installed as a #{package_text} and must be built from source. +      cannot be installed as #{package_text} and must be built from source.        #{xcode_text}      EOS    end | 
