Archived
1
0

Fixes rename mistake

This commit is contained in:
Jip J. Dekker 2016-03-19 20:59:28 +01:00
parent 56ef3c3a73
commit 89c30ca5eb

View File

@ -77,5 +77,5 @@ func AbsolutePath(path, root string) string {
if filepath.IsAbs(path) {
return path
}
return filepath.Join(lib, path)
return filepath.Join(root, path)
}