diff options
author | Joe <rbo@gmx.us> | 2024-01-19 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-01-19 20:20:20 +0100 |
commit | 70f5688432e75a36ba0578514161af1b6a934876 (patch) | |
tree | 7d8a31ca9638c3a4e4ba60db55cdd789de167fb3 | |
parent | good error msgs (diff) | |
download | hardflip-70f5688432e75a36ba0578514161af1b6a934876.tar.gz hardflip-70f5688432e75a36ba0578514161af1b6a934876.tar.bz2 hardflip-70f5688432e75a36ba0578514161af1b6a934876.tar.xz hardflip-70f5688432e75a36ba0578514161af1b6a934876.tar.zst hardflip-70f5688432e75a36ba0578514161af1b6a934876.zip |
go
Diffstat (limited to '')
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | c_parse.go | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -54,7 +54,7 @@ ## v1.3 - ghetto bird -- [ ] sorting options +- [ ] sorting options (yea like never) ## v1.4 @@ -62,6 +62,7 @@ func c_read_yaml_file(file string) *HostNode { yaml_file, err := os.ReadFile(file) if err != nil { + // TODO: remove all c_dies with c_err_mode c_die("error reading file " + file, err) } if err = yaml.Unmarshal(yaml_file, &host); err != nil { |