diff options
Diffstat (limited to 'crates/shirabe/src/repository/vcs/svn_driver.rs')
| -rw-r--r-- | crates/shirabe/src/repository/vcs/svn_driver.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/shirabe/src/repository/vcs/svn_driver.rs b/crates/shirabe/src/repository/vcs/svn_driver.rs index ecf4a48a..3c233db8 100644 --- a/crates/shirabe/src/repository/vcs/svn_driver.rs +++ b/crates/shirabe/src/repository/vcs/svn_driver.rs @@ -268,7 +268,7 @@ impl SvnDriver { (identifier.clone(), String::new()) } } else { - (identifier.clone(), String::new()) + (identifier, String::new()) }; let output: String = match self.execute( @@ -308,7 +308,7 @@ impl SvnDriver { (identifier.clone(), String::new()) } } else { - (identifier.clone(), String::new()) + (identifier, String::new()) }; let output = self.execute( @@ -500,7 +500,7 @@ impl SvnDriver { "info".to_string(), "--non-interactive".to_string(), "--".to_string(), - url.clone(), + url, ], &mut ignored_output, None, |
