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 3f114cc commit 4d7ce6eCopy full SHA for 4d7ce6e
src/verify.rs
@@ -22,8 +22,8 @@ pub fn verify(start_at: Option<&str>) -> Result<(), ()> {
22
}
23
24
match i.get("mode").unwrap().as_str().unwrap() {
25
- "test" => test(i.get("path").unwrap().as_str().unwrap())?,
26
- "compile" => compile_only(i.get("path").unwrap().as_str().unwrap())?,
+ "test" => test(path)?,
+ "compile" => compile_only(path)?,
27
_ => (),
28
29
0 commit comments