diff options
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) { |
