1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2024-11-21 16:05:40 +00:00

handle error

This commit is contained in:
thesayyn 2023-11-03 11:47:53 -07:00 committed by Vincent Batts
parent d843e933df
commit 9c8328e386

View file

@ -117,7 +117,10 @@ skip:
} }
} }
spec.WriteTo(writer) _, err = spec.WriteTo(writer)
if err != nil {
return fmt.Errorf("writing mtree %s: %w", outputPath, err)
}
return nil return nil
} }