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 64c584d commit c670e3eCopy full SHA for c670e3e
cargo-afl/src/config.rs
@@ -69,7 +69,11 @@ pub fn config(args: &Args) -> Result<()> {
69
.status()
70
.as_ref()
71
.is_ok_and(ExitStatus::success);
72
- ensure!(success, "could not copy directory {afl_src_dir:?}");
+ ensure!(
73
+ success,
74
+ "could not copy directory `{}`",
75
+ afl_src_dir.display()
76
+ );
77
}
78
79
let work_dir = tempdir.path().join(AFL_SRC_PATH);
0 commit comments