diff options
| author | Jack Nagel | 2014-09-13 15:11:59 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-09-13 15:11:59 -0500 | 
| commit | e37906eba4c64e3280ecae88838ee29d4dc090f7 (patch) | |
| tree | 28f289af3606d5372b9e5c19e20400c098b07dd6 /Library/Formula/subversion.rb | |
| parent | 02094a8418d2d8fe5ea92bdd96bda7a58af4c40a (diff) | |
| download | homebrew-e37906eba4c64e3280ecae88838ee29d4dc090f7.tar.bz2 | |
Homebrew::InstallationError should not be raised "manually"
Diffstat (limited to 'Library/Formula/subversion.rb')
| -rw-r--r-- | Library/Formula/subversion.rb | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/subversion.rb b/Library/Formula/subversion.rb index a760f4450..041deb53f 100644 --- a/Library/Formula/subversion.rb +++ b/Library/Formula/subversion.rb @@ -75,7 +75,7 @@ class Subversion < Formula      end      if build.include? 'unicode-path' -      raise Homebrew::InstallationError.new(self, <<-EOS.undent +      raise <<-EOS.undent          The --unicode-path patch is not supported on Subversion 1.8.          Upgrading from a 1.7 version built with this patch is not supported. @@ -84,7 +84,6 @@ class Subversion < Formula            brew rm subversion && brew install subversion          to build a new version of 1.8 without this patch.        EOS -      )      end      if build.include? 'java'  | 
