From 65e5959bad36a6faa7ff8b9c1b21a2b99c4dacad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 23 Nov 2016 18:54:57 +0100 Subject: [PATCH] helpers: Simplify --- helpers/path.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/path.go b/helpers/path.go index 8dc5f932..6a35a55c 100644 --- a/helpers/path.go +++ b/helpers/path.go @@ -232,7 +232,7 @@ func makePathRelative(inPath string, possibleDirectories ...string) (string, err } // Should be good enough for Hugo. -var isFileRe = regexp.MustCompile(".*\\..{1,6}$") +var isFileRe = regexp.MustCompile(`.*\..{1,6}$`) // GetDottedRelativePath expects a relative path starting after the content directory. // It returns a relative path with dots ("..") navigating up the path structure.