diff options
Diffstat (limited to 'src/van.rs')
-rw-r--r-- | src/van.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -52,7 +52,7 @@ impl Van { } pub async fn download(&self, target: String) -> Result<(), Error> { - let mut output = Command::new("ssh") + let output = Command::new("ssh") .args([ "-oStrictHostKeyChecking=accept-new", &target.clone(), |