From: Albert Nigmatzianov Date: Sun, 7 May 2017 15:16:36 +0000 (+0200) Subject: helpers: Don't clean path twice X-Git-Tag: v0.21~44 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9b080dc6;p=brevno-suite%2Fhugo helpers: Don't clean path twice Join calls Clean as it says in docs. Minor performance improvement: Before: Average time per operation: 432ms Average memory allocated per operation: 127322kB Average allocations per operation: 2138137 After: Average time per operation: 428ms Average memory allocated per operation: 127350kB Average allocations per operation: 2137892 --- diff --git a/helpers/path.go b/helpers/path.go index 554e9977..d246b57c 100644 --- a/helpers/path.go +++ b/helpers/path.go @@ -158,7 +158,7 @@ func (p *PathSpec) AbsPathify(inPath string) string { } // TODO(bep): Consider moving workingDir to argument list - return filepath.Clean(filepath.Join(p.workingDir, inPath)) + return filepath.Join(p.workingDir, inPath) } // GetLayoutDirPath returns the absolute path to the layout file dir