aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2013-08-19 14:07:14 -0500
committerJack Nagel2013-08-19 14:07:14 -0500
commiteaeded4b2a6b64dd223a7af7f21a384c735ce9c5 (patch)
treeb444178062158357ab87592bd57c10e6c1310f2b
parent042e84cc64be2fd866ba943f9ffeb97afe9d0d02 (diff)
downloadhomebrew-eaeded4b2a6b64dd223a7af7f21a384c735ce9c5.tar.bz2
Fix typo
-rw-r--r--Library/Homebrew/extend/ENV/shared.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/ENV/shared.rb b/Library/Homebrew/extend/ENV/shared.rb
index 5ceecd844..74b48d9de 100644
--- a/Library/Homebrew/extend/ENV/shared.rb
+++ b/Library/Homebrew/extend/ENV/shared.rb
@@ -65,7 +65,7 @@ module SharedEnvExtension
def userpaths!
paths = ORIGINAL_PATHS.map { |p| p.realpath.to_s rescue nil } - %w{/usr/X11/bin /opt/X11/bin}
- self['PATH'] = paths.unshift(*self['PATH'].split(PATH_SEPARATOR)).uniq.join(File::PATH_SEPARATOR)
+ self['PATH'] = paths.unshift(*self['PATH'].split(File::PATH_SEPARATOR)).uniq.join(File::PATH_SEPARATOR)
# XXX hot fix to prefer brewed stuff (e.g. python) over /usr/bin.
prepend 'PATH', HOMEBREW_PREFIX/'bin', File::PATH_SEPARATOR
end