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
commit90574a6a4b42b23c1f1b25d4db0289d4be02cfd7 (patch)
tree6779059c72f03635064f59aa2ea5e9c11d279cb8 /Library
parentb24ef38bc1990707133fb24788fcabe0be81c9a1 (diff)
downloadbrew-90574a6a4b42b23c1f1b25d4db0289d4be02cfd7.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)