diff options
| author | Jeff Carr <[email protected]> | 2025-01-10 22:27:38 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-10 22:27:38 -0600 |
| commit | f3297022a8ed73db93842311d4b1429e8f69e8c7 (patch) | |
| tree | 947b1c90cf528c0e3de4e749d100dbdd86d0241a /main.go | |
| parent | 6ce9c29135cd181755e0e76a5ddba98e37ae49d8 (diff) | |
close to being able to remove the old functions
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -151,7 +151,9 @@ func main() { pb.marshal(pf) // make the sort.pb.go file - pb.makeNewSortfile(pf) + if err := pb.makeNewSortfile(pf); err != nil { + badExit(err) + } } func okExit(s string) { |
