aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-03-22 11:47:48 -0500
committerJack Nagel2014-03-22 11:48:49 -0500
commitf0966cf6b6b74f71aa640b8408e2d373aea7e469 (patch)
treec91ad42c17a33bc9b12aeae2adca7fac6898baf6 /Library
parentb4e5401e660ac1962a88b151f511a0eef9cee44c (diff)
downloadbrew-f0966cf6b6b74f71aa640b8408e2d373aea7e469.tar.bz2
Use canonicalized path for loaded install receipts
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/tab.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/tab.rb b/Library/Homebrew/tab.rb
index 8016f588a..210c4fe2d 100644
--- a/Library/Homebrew/tab.rb
+++ b/Library/Homebrew/tab.rb
@@ -32,7 +32,7 @@ class Tab < OpenStruct
def self.from_file path
tab = Tab.new Utils::JSON.load(File.read(path))
- tab.tabfile = path
+ tab.tabfile = path.realpath
tab
end