fix: Fix COMPRESSION typo, correct DIGEST log tag, and refactor mode_update cloning

This commit is contained in:
Andrew Phillips
2025-05-13 18:36:23 -03:00
committed by Andrew Phillips (aider)
parent eaeb83f12e
commit e7496b8978
3 changed files with 9 additions and 11 deletions

View File

@@ -72,7 +72,7 @@ impl DigestEngine for DigestEngineProgram {
}
fn get_program_path(program: &str) -> Result<String> {
debug!("COMPRESSION: Looking for executable: {}", program);
debug!("DIGEST: Looking for executable: {}", program);
if let Ok(path) = env::var("PATH") {
for p in path.split(':') {
let p_str = format!("{}/{}", p, program);