Use colorPrint for config file info too

pull/6/head
Liz Rice 7 years ago
parent b7a92799b9
commit c3d67e0fee

@ -18,6 +18,7 @@ import (
"fmt" "fmt"
"os" "os"
"github.com/aquasecurity/kube-bench/check"
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/spf13/viper" "github.com/spf13/viper"
) )
@ -96,6 +97,6 @@ func initConfig() {
// If a config file is found, read it in. // If a config file is found, read it in.
if err := viper.ReadInConfig(); err == nil { if err := viper.ReadInConfig(); err == nil {
fmt.Println("Using config file:", viper.ConfigFileUsed()) colorPrint(check.INFO, fmt.Sprintf("Using config file: %s\n", viper.ConfigFileUsed()))
} }
} }

Loading…
Cancel
Save