helpers: Simplify
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 23 Nov 2016 17:54:57 +0000 (18:54 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 23 Nov 2016 17:54:57 +0000 (18:54 +0100)
helpers/path.go

index 8dc5f9324d8d3d8da2540d5e3b06a170c7afe19d..6a35a55ca9fc523d058777333e8c67a215dc1c59 100644 (file)
@@ -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.