diff --git a/src/cli.rs b/src/cli.rs index 6e61636..7c7faa9 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -643,7 +643,7 @@ impl Opts { } else if !self.search_path.is_empty() { &self.search_path } else { - let current_directory = Path::new("."); + let current_directory = Path::new("./"); ensure_current_directory_exists(current_directory)?; return Ok(vec![self.normalize_path(current_directory)]); };