fix: remove duplicate digest argument and adjust imports
This commit is contained in:
committed by
Andrew Phillips (aider)
parent
4c2df3d743
commit
9ba3a31e95
@@ -1,4 +1,4 @@
|
||||
use anyhow::{anyhow, Result};
|
||||
use anyhow::{anyhow, Result, Context};
|
||||
use log::*;
|
||||
use std::env;
|
||||
use std::fs;
|
||||
@@ -51,7 +51,7 @@ impl DigestEngine for DigestEngineProgram {
|
||||
.stdin(Stdio::piped())
|
||||
.stdout(Stdio::piped())
|
||||
.spawn()
|
||||
.with_context(|| anyhow!(
|
||||
.context(anyhow!(
|
||||
"Problem spawning child process: {:?} {:?}",
|
||||
program,
|
||||
args
|
||||
|
||||
Reference in New Issue
Block a user