environment variable COLMENA_SSHOPTS

This commit is contained in:
Yureka 2022-11-16 17:17:35 +01:00
parent eb9ddc6d04
commit 0e5d424529

View File

@ -354,6 +354,10 @@ impl Ssh {
options.push(ssh_config.to_str().unwrap().to_string());
}
if let Ok(custom_ssh_opts) = std::env::var("COLMENA_SSHOPTS") {
options.push(custom_ssh_opts)
}
options
}