mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 05:04:13 +01:00
Use Printf instead of Println (#318)
Testing in Fedora reports: ./root.go:58:4: (*github.com/fatih/color.Color).Println call has possible Printf formatting directive %s
This commit is contained in:
parent
78b0db50e0
commit
045513234f
@ -55,7 +55,7 @@ func initConfig() {
|
||||
viper.SetConfigFile(cfgFile)
|
||||
viper.AutomaticEnv()
|
||||
if viper.ConfigFileUsed() == "" {
|
||||
colors.Error.Println("cannot read config file %s\n", cfgFile)
|
||||
colors.Error.Printf("cannot read config file %s\n", cfgFile)
|
||||
os.Exit(1)
|
||||
}
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user