aboutsummaryrefslogtreecommitdiff
path: root/src/deploy.rs
diff options
context:
space:
mode:
authornotgne22021-02-28 02:38:06 -0700
committernotgne22021-02-28 02:38:06 -0700
commitc8a40bedcdd218d981a1cbc67f232a84535af0ed (patch)
tree90034a44f16555fcb73cb9da0b2df1b74c3abee5 /src/deploy.rs
parent4d4bdda3abd243e892d45c2ee7844414570b1823 (diff)
Re-use `ssh_addr`
Diffstat (limited to '')
-rw-r--r--src/deploy.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/deploy.rs b/src/deploy.rs
index fb6ce0a..f560172 100644
--- a/src/deploy.rs
+++ b/src/deploy.rs
@@ -150,11 +150,11 @@ pub enum ConfirmProfileError {
pub async fn confirm_profile(
deploy_data: &super::DeployData<'_>,
deploy_defs: &super::DeployDefs,
- hostname: &str,
temp_path: Cow<'_, str>,
+ ssh_addr: &str,
) -> Result<(), ConfirmProfileError> {
let mut ssh_confirm_command = Command::new("ssh");
- ssh_confirm_command.arg(format!("ssh://{}@{}", deploy_defs.ssh_user, hostname));
+ ssh_confirm_command.arg(ssh_addr);
for ssh_opt in &deploy_data.merged_settings.ssh_opts {
ssh_confirm_command.arg(ssh_opt);
@@ -330,7 +330,7 @@ pub async fn deploy_profile(
info!("Success activating, attempting to confirm activation");
- let c = confirm_profile(deploy_data, deploy_defs, hostname, temp_path).await;
+ let c = confirm_profile(deploy_data, deploy_defs, temp_path, &ssh_addr).await;
recv_activated.await.unwrap();
c?;
}