We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67dd086 commit f748ab2Copy full SHA for f748ab2
src/imageproxy.rs
@@ -279,10 +279,9 @@ impl TryFrom<ImageProxyConfig> for Command {
279
let mut c = std::process::Command::new("skopeo");
280
unsafe {
281
c.pre_exec(|| {
282
- rustix::process::set_parent_process_death_signal(Some(
+ Ok(rustix::process::set_parent_process_death_signal(Some(
283
rustix::process::Signal::TERM,
284
- ))
285
- .map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, e))
+ ))?)
286
});
287
}
288
c
0 commit comments