1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2024-11-22 08:25:38 +00:00

handle error

This commit is contained in:
thesayyn 2023-11-03 11:47:53 -07:00
parent b062bc1c68
commit 2234e565ae
No known key found for this signature in database
GPG key ID: D10C0AE203D0E4A8

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
}