We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4baa8b commit 4ea5731Copy full SHA for 4ea5731
1 file changed
fuzz/src/main.rs
@@ -574,6 +574,12 @@ impl EvalCfg {
574
fn run_decode_subcmd(files: &[PathBuf], cli_args: &Args) {
575
let mut buf = Vec::new();
576
for path in files {
577
+ if path.file_name().unwrap_or_default() == "README.txt" {
578
+ // AFL creates README files in each directory
579
+ println!("{}: skipping README file", path.display());
580
+ continue;
581
+ }
582
+
583
println!("{}{}:{}", term().dim, path.display(), term().rst);
584
585
buf.clear();
0 commit comments