aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-04-06 13:58:46 -0500
committerJack Nagel2014-04-06 14:01:06 -0500
commit37ce6b9f98068af06199c49c332e474516badcf9 (patch)
tree31c1750eff191a06bcf78b460197388f1f9ef3f0 /Library
parent590b95efb80a67a7939a08a69c9dbfb4607f75a3 (diff)
downloadhomebrew-37ce6b9f98068af06199c49c332e474516badcf9.tar.bz2
Drop conditional that is always false
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/keg.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/Library/Homebrew/keg.rb b/Library/Homebrew/keg.rb
index 521326a8c..973ce593f 100644
--- a/Library/Homebrew/keg.rb
+++ b/Library/Homebrew/keg.rb
@@ -53,7 +53,6 @@ class Keg < Pathname
TOP_LEVEL_DIRECTORIES.map{ |d| self/d }.each do |dir|
next unless dir.exist?
dir.find do |src|
- next if src == self
dst = HOMEBREW_PREFIX + src.relative_path_from(self)
dst.extend(ObserverPathnameExtension)