1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2024-11-25 09:28:16 +00:00

Use colorPrint for config file info too

This commit is contained in:
Liz Rice 2017-06-20 11:10:11 +01:00
parent b7a92799b9
commit c3d67e0fee

View File

@ -18,6 +18,7 @@ import (
"fmt"
"os"
"github.com/aquasecurity/kube-bench/check"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
@ -96,6 +97,6 @@ func initConfig() {
// If a config file is found, read it in.
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()))
}
}