diff options
author | orvit <cdavis4short@gmail.com> | 2022-07-14 16:52:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-15 07:52:44 +1000 |
commit | dbf5e95b59656b05f28218a27d128cae9fd68342 (patch) | |
tree | a5aa4d6cde6f39c2439036eb73243c46d2a6a63e /cli/fs_util.rs | |
parent | 1a7259b04b7229f6350a7a7c21b50497b5c80c17 (diff) |
refactor: remove redundant qualification of symbols in Rust (#15201)
Diffstat (limited to 'cli/fs_util.rs')
-rw-r--r-- | cli/fs_util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/fs_util.rs b/cli/fs_util.rs index 53406351b..322b3f9e7 100644 --- a/cli/fs_util.rs +++ b/cli/fs_util.rs @@ -249,7 +249,7 @@ where { let mut prepared = vec![]; - let root_path = std::env::current_dir()?; + let root_path = current_dir()?; for path in include { let lowercase_path = path.to_lowercase(); if lowercase_path.starts_with("http://") |