diff --git a/src/main.rs b/src/main.rs index e282eb6..dae2aa7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -176,7 +176,8 @@ fn run() -> Result { let path_separator = matches .value_of("path-separator") .map_or_else(filesystem::default_path_separator, |s| Some(s.to_owned())); - if let Some(sep) = path_separator.clone() { + + if let Some(ref sep) = path_separator { if sep.len() > 1 { return Err(anyhow!( "A path separator must be exactly one byte, but \