diff options
| author | Adam Vandenberg | 2013-06-25 11:21:04 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-25 11:21:04 -0700 |
| commit | 21fef8963023689abeb4fd19a3bf937096b051a6 (patch) | |
| tree | e7ae379b52381f3221c32c7bf6328509503a0a12 /Library | |
| parent | 3d883402c8e0fea56fd3a1bccdf738b807e0e857 (diff) | |
| download | homebrew-21fef8963023689abeb4fd19a3bf937096b051a6.tar.bz2 | |
Fix info --github
Closes #20780.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/info.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/info.rb b/Library/Homebrew/cmd/info.rb index ab328ea78..0b757b388 100644 --- a/Library/Homebrew/cmd/info.rb +++ b/Library/Homebrew/cmd/info.rb @@ -79,7 +79,7 @@ module Homebrew extend self path = "Library/Formula/#{path.basename}" end - "From: https://github.com/#{user}/#{repo}/commits/master/#{path}" + "https://github.com/#{user}/#{repo}/commits/master/#{path}" end def info_formula f @@ -116,7 +116,7 @@ module Homebrew extend self end history = github_info(f) - puts history if history + puts "From: #{history}" if history unless f.deps.empty? ohai "Dependencies" |
