diff options
author | notgne2 | 2021-02-28 02:38:40 -0700 |
---|---|---|
committer | notgne2 | 2021-02-28 02:38:40 -0700 |
commit | 0e1cc238e1fc7181185aaebe31da925bb6aefca8 (patch) | |
tree | 221b5a6ea098a3788163a653401d013ef19f55a3 /src | |
parent | c8a40bedcdd218d981a1cbc67f232a84535af0ed (diff) |
Remove `ssh://` prefix from SSH addresses
Diffstat (limited to 'src')
-rw-r--r-- | src/deploy.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deploy.rs b/src/deploy.rs index f560172..f6871d2 100644 --- a/src/deploy.rs +++ b/src/deploy.rs @@ -246,7 +246,7 @@ pub async fn deploy_profile( None => &deploy_data.node.node_settings.hostname, }; - let ssh_addr = format!("ssh://{}@{}", deploy_defs.ssh_user, hostname); + let ssh_addr = format!("{}@{}", deploy_defs.ssh_user, hostname); let mut ssh_activate_command = Command::new("ssh"); ssh_activate_command.arg(&ssh_addr); |