Cleaned up unowned file error. Should not error

This commit is contained in:
Russell 2025-07-29 21:57:46 +02:00
parent 57105f17f3
commit e57982e82e
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ fn handle_file_command(
owners.push((manager.name(), owner));
}
Ok(None) => continue,
Err(e) => eprintln!("Warning: Error checking {} in {}: {}", path, manager.name(), e),
Err(e) => eprintln!("Failed checking {} against known package managers. ", path,),
}
}