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 fb41a96 commit b910846Copy full SHA for b910846
src/main.rs
@@ -442,6 +442,13 @@ impl Config {
442
);
443
}
444
445
+ if !args.test_dir.is_dir() {
446
+ bail!(
447
+ "`{}` is not a directory. Please make sure --test-dir is correct",
448
+ args.test_dir.display()
449
+ );
450
+ }
451
+
452
let is_commit = match (args.start.clone(), args.end.clone()) {
453
(Some(Bound::Commit(_)), Some(Bound::Commit(_)))
454
| (None, Some(Bound::Commit(_)))
0 commit comments