diff options
| author | Jack Nagel | 2014-09-14 11:18:55 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-09-14 11:19:30 -0500 | 
| commit | 1f162dba6f2355f3d7f58b5bdd0194c4ccbcdc24 (patch) | |
| tree | 731eb11a663cc1c67522e210a2162fa26dea799c /Library/Homebrew/cmd/install.rb | |
| parent | 672339b7ca08f791a485f71397b54d7de6ad020f (diff) | |
| download | homebrew-1f162dba6f2355f3d7f58b5bdd0194c4ccbcdc24.tar.bz2 | |
Consistently call name on formula instead of relying on to_s
Diffstat (limited to 'Library/Homebrew/cmd/install.rb')
| -rw-r--r-- | Library/Homebrew/cmd/install.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb index c8e0e9e42..94f9e3a78 100644 --- a/Library/Homebrew/cmd/install.rb +++ b/Library/Homebrew/cmd/install.rb @@ -29,7 +29,7 @@ module Homebrew          # Building head-only without --HEAD is an error          if not ARGV.build_head? and f.stable.nil?            raise CannotInstallFormulaError, <<-EOS.undent -          #{f} is a head-only formula +          #{f.name} is a head-only formula            Install with `brew install --HEAD #{f.name}`            EOS          end | 
