diff options
| author | Misty De Meo | 2013-02-28 10:56:40 -0600 | 
|---|---|---|
| committer | Misty De Meo | 2013-03-04 12:12:47 -0600 | 
| commit | 56669c164521353ef25bd16ff0d2cc0a374d979f (patch) | |
| tree | 8fea9dd37639594ef5a206562cd7d1c75d0cc737 /Library/Homebrew/cmd/tap.rb | |
| parent | e53239d0b0867fcb9a1362c5dbc01f80ef185521 (diff) | |
| download | homebrew-56669c164521353ef25bd16ff0d2cc0a374d979f.tar.bz2 | |
tap: adjust formula count for unsymlinked files
Relying on the output of `tapped` results in ignoring formulae which
already exist in core, with messages like "Tapped 0 formula" for
non-empty taps.
Diffstat (limited to 'Library/Homebrew/cmd/tap.rb')
| -rw-r--r-- | Library/Homebrew/cmd/tap.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/tap.rb b/Library/Homebrew/cmd/tap.rb index 06606cf9a..5bd37548f 100644 --- a/Library/Homebrew/cmd/tap.rb +++ b/Library/Homebrew/cmd/tap.rb @@ -28,8 +28,8 @@ module Homebrew extend self      files = []      tapd.find_formula{ |file| files << tapd.basename.join(file) } -    tapped = link_tap_formula(files) -    puts "Tapped #{tapped} formula" +    link_tap_formula(files) +    puts "Tapped #{files.count} formula"      # Figure out if this repo is private      # curl will throw an exception if the repo is private (Github returns a 404)  | 
