ssh remoting: Expand tilde on host side (#18333)
This commit is contained in:
parent
4e2ae06ca6
commit
ccc871c44c
2 changed files with 11 additions and 3 deletions
|
@ -327,7 +327,14 @@ impl SshClientDelegate {
|
|||
cx,
|
||||
)
|
||||
.await
|
||||
.map_err(|e| anyhow::anyhow!("failed to download remote server binary: {}", e))?;
|
||||
.map_err(|e| {
|
||||
anyhow::anyhow!(
|
||||
"failed to download remote server binary (os: {}, arch: {}): {}",
|
||||
platform.os,
|
||||
platform.arch,
|
||||
e
|
||||
)
|
||||
})?;
|
||||
|
||||
Ok((binary_path, version))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue