From 1583d8d094f11b267ba7b9bd1ebbdfa460345beb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Thu, 6 Aug 2015 22:46:01 +0200 Subject: [PATCH] Add missing formatting directive in Printf call To make Go Vet happy. --- tpl/template_resources.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tpl/template_resources.go b/tpl/template_resources.go index f49e7df6f..1fe94af88 100644 --- a/tpl/template_resources.go +++ b/tpl/template_resources.go @@ -267,15 +267,15 @@ func GetCSV(sep string, urlParts ...string) [][]string { } func ReadDir(path string) []os.FileInfo { - wd := "" - p := "" + wd := "" + p := "" if viper.GetString("WorkingDir") != "" { wd = viper.GetString("WorkingDir") } - if strings.Contains(path, "..") { - jww.ERROR.Printf("Path contains parent directory marker ..\n", path) + if strings.Contains(path, "..") { + jww.ERROR.Printf("Path %s contains parent directory marker", path) return nil - } + } p = filepath.Clean(path) p = filepath.Join(wd, p)