aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorXu Cheng2015-06-08 22:13:50 +0800
committerXu Cheng2015-06-08 22:13:50 +0800
commit18bb32a04db1f4b5a8a0de9a2f45b783c27e647a (patch)
tree91b74a47186e6566a4404dd5eb2957e9f5fd6432 /Library
parent7a96b6a7fa2cd14af2f115ca5c8a5378a1bd1aac (diff)
downloadbrew-18bb32a04db1f4b5a8a0de9a2f45b783c27e647a.tar.bz2
tap: fix Homebrew/homebrew#40487
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/tap.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/tap.rb b/Library/Homebrew/cmd/tap.rb
index 14542f1c5..6dc8c4da0 100644
--- a/Library/Homebrew/cmd/tap.rb
+++ b/Library/Homebrew/cmd/tap.rb
@@ -85,6 +85,6 @@ module Homebrew
end
def check_private?(clone_target, user, repo)
- not clone_target && private_tap?(user, repo)
+ !clone_target && private_tap?(user, repo)
end
end