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 34696e6 commit 4a5470cCopy full SHA for 4a5470c
src/main.rs
@@ -57,9 +57,10 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
57
));
58
}
59
let local_path = PathBuf::from(&args.sources[0]);
60
+ let ignore_path = PathBuf::from(&args.ignore_file);
61
println!("Processing local repository at: {:?}", local_path);
62
println!("No file headers: {}", args.no_headers);
- println!("Ignore file path: {:?}", args.ignore_file);
63
+ println!("Ignore file path: {:?}", ignore_path.canonicalize()?);
64
println!("----------------------------------------");
65
process_local_path(
66
local_path,
0 commit comments