Bug fixes (#145)

This commit is contained in:
Rebecca Turner
2022-11-05 05:11:31 -04:00
committed by GitHub
parent 60ff087048
commit 8acdfc8d1c
17 changed files with 276 additions and 155 deletions

View File

@@ -24,7 +24,7 @@ pub fn ssh_step(ctx: &ExecutionContext, hostname: &str) -> Result<()> {
#[cfg(unix)]
{
prepare_async_ssh_command(&mut args);
crate::tmux::run_command(ctx, &args.join(" "))?;
crate::tmux::run_command(ctx, &shell_words::join(args))?;
Err(SkipStep(String::from("Remote Topgrade launched in Tmux")).into())
}