We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6023c2 commit 7857674Copy full SHA for 7857674
config/config.go
@@ -38,7 +38,7 @@ func createConfigFileIfNonExistent(ffp string) {
38
if _, err := os.Stat(ffp); os.IsNotExist(err) {
39
_, err := os.Create(ffp)
40
if err != nil {
41
- panic(fmt.Sprintf("config file does not exists and wasn't able to create it: %s\n", err))
+ panic(fmt.Sprintf("could not create config file: %s\n", err))
42
}
43
44
0 commit comments