diff options
| author | Cara Salter <cara@devcara.com> | 2022-05-19 14:56:35 -0400 | 
|---|---|---|
| committer | Cara Salter <cara@devcara.com> | 2022-05-19 14:56:35 -0400 | 
| commit | 38114b3dfabb3a57f80c86f86099a714986f58eb (patch) | |
| tree | 2ab766d7045f368b4cdbb17232e470bb92094dd4 /src/van.rs | |
| parent | c06184b2ff121ad829db9cc65e92af56f66d442e (diff) | |
| download | solarlib-38114b3dfabb3a57f80c86f86099a714986f58eb.tar.gz solarlib-38114b3dfabb3a57f80c86f86099a714986f58eb.zip | |
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.
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(), | 
