aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/untap.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/untap.rb b/Library/Homebrew/cmd/untap.rb
index e1529c288..148e96448 100644
--- a/Library/Homebrew/cmd/untap.rb
+++ b/Library/Homebrew/cmd/untap.rb
@@ -31,7 +31,7 @@ module Homebrew extend self
bn = formula.basename.to_s
pn = HOMEBREW_LIBRARY/"Formula/#{bn}"
- if pn.symlink? and pn.realpath.to_s =~ %r[^#{tapd}]
+ if pn.symlink? and (!pn.exist? or pn.realpath.to_s =~ %r[^#{tapd}])
pn.delete
gitignores.delete(bn)
untapped += 1