mirror of
https://github.com/pesde-pkg/pesde.git
synced 2024-12-12 11:00:36 +00:00
fix: propagate inner download error error
This commit is contained in:
parent
00d4515849
commit
745828f926
2 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
## [Unreleased]
|
||||
### Fixed
|
||||
- Add back mistakenly removed updates check caching by @daimond113
|
||||
- Set download error source to inner error to propagate the error by @daimond113
|
||||
|
||||
## [0.5.0-rc.10] - 2024-11-16
|
||||
### Fixed
|
||||
|
|
|
@ -164,6 +164,6 @@ pub mod errors {
|
|||
|
||||
/// Error writing package contents
|
||||
#[error("failed to write package contents")]
|
||||
WriteFailed(std::io::Error),
|
||||
WriteFailed(#[source] std::io::Error),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue