Skip to content

Commit

Permalink
Remove superfluous path.replace
Browse files Browse the repository at this point in the history
See #153
  • Loading branch information
sharkdp committed Nov 11, 2017
1 parent c022528 commit 26f71dd
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,7 @@ fn main() {

// Get the root directory for the search
let mut root_dir_buf = match matches.value_of("path") {
Some(path) => {
#[cfg(windows)]
let path = path.replace('/', "\\");

PathBuf::from(path)
}
Some(path) => PathBuf::from(path),
None => current_dir.to_path_buf(),
};
if !fshelper::is_dir(&root_dir_buf) {
Expand Down

0 comments on commit 26f71dd

Please sign in to comment.