mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-22 00:15:39 +00:00
handle error
This commit is contained in:
parent
b062bc1c68
commit
2234e565ae
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue