From 89c30ca5eb7549f6bb2dba24b9201ad9da93d9be Mon Sep 17 00:00:00 2001 From: "Jip J. Dekker" Date: Sat, 19 Mar 2016 20:59:28 +0100 Subject: [PATCH] Fixes rename mistake --- helpers/file_utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/file_utils.go b/helpers/file_utils.go index b74e3b3..5bb3fe9 100644 --- a/helpers/file_utils.go +++ b/helpers/file_utils.go @@ -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) }