Capitalize console messages
This commit is contained in:
parent
90fbba600f
commit
ebb519e6d8
1 changed files with 3 additions and 3 deletions
|
|
@ -32,18 +32,18 @@ func Main() int {
|
||||||
case cliIntentConfigValidate:
|
case cliIntentConfigValidate:
|
||||||
contents, _, err := parseYAMLIncludes(options.configPath)
|
contents, _, err := parseYAMLIncludes(options.configPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Printf("could not parse config file: %v\n", err)
|
fmt.Printf("Could not parse config file: %v\n", err)
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, err := newConfigFromYAML(contents); err != nil {
|
if _, err := newConfigFromYAML(contents); err != nil {
|
||||||
fmt.Printf("config file is invalid: %v\n", err)
|
fmt.Printf("Config file is invalid: %v\n", err)
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
case cliIntentConfigPrint:
|
case cliIntentConfigPrint:
|
||||||
contents, _, err := parseYAMLIncludes(options.configPath)
|
contents, _, err := parseYAMLIncludes(options.configPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Printf("could not parse config file: %v\n", err)
|
fmt.Printf("Could not parse config file: %v\n", err)
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue