1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2024-11-13 19:29:02 +00:00

Remove the old lines of fmt.Sprintf in cmd/common.go

This commit is contained in:
Philippe ALEXANDRE 2018-03-27 15:33:01 +02:00
parent d6c16f7563
commit f091c8adea

View File

@ -18,7 +18,7 @@ import (
"fmt"
"io/ioutil"
"path/filepath"
"github.com/aquasecurity/kube-bench/check"
"github.com/golang/glog"
"github.com/spf13/viper"
@ -48,12 +48,10 @@ func runChecks(t check.NodeType) {
}
ver := getKubeVersion()
// path := fmt.Sprintf("%s/%s", cfgDir, ver)
path := filepath.Join(cfgDir, ver)
// def := fmt.Sprintf("%s/%s", path, file)
def := filepath.Join(path, file)
in, err := ioutil.ReadFile(def)
if err != nil {
exitWithError(fmt.Errorf("error opening %s controls file: %v", t, err))