1
1
Fork 0
mirror of https://tildegit.org/solderpunk/molly-brown synced 2024-05-12 16:06:03 +02:00

Make it clear what is wrong with a config file.

This commit is contained in:
Solderpunk 2020-06-04 20:36:03 +02:00
parent 93f3c9e620
commit 44d72c2bf2

View File

@ -24,6 +24,7 @@ func main() {
config, err := getConfig(conf_file)
if err != nil {
fmt.Println("Error reading config file " + conf_file)
fmt.Println(err)
os.Exit(1)
}