From 38114b3dfabb3a57f80c86f86099a714986f58eb Mon Sep 17 00:00:00 2001 From: Cara Salter Date: Thu, 19 May 2022 14:56:35 -0400 Subject: house: Add "remote" flag Let's us figure out if a House is remote or not, because if it's not we shouldn't be using SSH to connect. --- src/van.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/van.rs') diff --git a/src/van.rs b/src/van.rs index 7024f73..64e7295 100644 --- a/src/van.rs +++ b/src/van.rs @@ -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(), -- cgit v1.2.3