aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/untap.rb
diff options
context:
space:
mode:
authorPeter Aronoff2015-06-02 17:27:05 -0400
committerMike McQuaid2015-06-05 21:54:12 +0100
commit965e2f50c3e8490ffb799ed01d6b1e8b1a7c98cc (patch)
tree01a8188d57c63a81c60b72fe1eb4580402f85526 /Library/Homebrew/cmd/untap.rb
parentd87f9d4359f4a6132504f3923cc4c71cdb86e8de (diff)
downloadbrew-965e2f50c3e8490ffb799ed01d6b1e8b1a7c98cc.tar.bz2
brew tap: allow tapping non-GitHub repositories.
`brew tap` restricts users to GitHub and checks for private repos. I created `brew any-tap` to support a wider variety of taps. With very small changes (and no extra flags!), this change allows users to use `brew tap` with GitHub as they always have or add one extra argument and tap any repository of any type from anywhere. brew tap user/name # Same as it ever was brew tap user/name URL # Tap URL, whatever it happens to be Closes Homebrew/homebrew#40326. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Homebrew/cmd/untap.rb')
-rw-r--r--Library/Homebrew/cmd/untap.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Homebrew/cmd/untap.rb b/Library/Homebrew/cmd/untap.rb
index 37ed2a3f1..937439e9d 100644
--- a/Library/Homebrew/cmd/untap.rb
+++ b/Library/Homebrew/cmd/untap.rb
@@ -7,10 +7,10 @@ module Homebrew
ARGV.each do |tapname|
user, repo = tap_args(tapname)
- # we consistently downcase in tap to ensure we are not bitten by case-insensive
- # filesystem issues. Which is the default on mac. The problem being the
- # filesystem cares, but our regexps don't. So unless we resolve *every* path
- # we will get bitten.
+ # We consistently downcase in tap to ensure we are not bitten by
+ # case-insensitive filesystem issues, which is the default on mac. The
+ # problem being the filesystem cares, but our regexps don't. So unless we
+ # resolve *every* path we will get bitten.
user.downcase!
repo.downcase!