Use canonicalized path for loaded install receipts

This commit is contained in:
Jack Nagel 2014-03-22 11:47:48 -05:00
parent b4e5401e66
commit f0966cf6b6

View File

@ -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