Skip to content

Commit b39a3de

Browse files
committed
checks if a version value exists in .hookz.yaml
1 parent 04398bd commit b39a3de

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

cmd/root.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,17 @@ func readConfig() (config Configuration, err error) {
5757
if err != nil {
5858
return
5959
}
60+
61+
if config.Version == "" {
62+
err = errors.New("no configuration version value found in .hookz.yaml")
63+
return
64+
}
65+
6066
// Check version
6167
ver := strings.Split(config.Version, ".")
6268
verMatch := strings.Split(Version, ".")
6369
if fmt.Sprintf("%v.%v", ver[0], ver[1]) != fmt.Sprintf("%v.%v", verMatch[0], verMatch[1]) {
64-
err = errors.New(fmt.Sprintf("Version Mismatch: Expected v%v.%v - Check your .hookz.yaml configuration\n", verMatch[0], verMatch[1]))
70+
err = fmt.Errorf("version mismatch: Expected v%v.%v - Check your .hookz.yaml configuration", verMatch[0], verMatch[1])
6571
}
6672
return
6773
}

0 commit comments

Comments
 (0)