diff --git a/crates/remote/src/transport/ssh.rs b/crates/remote/src/transport/ssh.rs index 70f1fd5e11bd0827f98be70a92e4338b75cef639..ad9cb3e91623bdc34ce012c87933202f87399815 100644 --- a/crates/remote/src/transport/ssh.rs +++ b/crates/remote/src/transport/ssh.rs @@ -306,7 +306,7 @@ impl RemoteConnection for SshRemoteConnection { use futures::AsyncWriteExt; let sftp_batch = format!("put -r {src_path_display} {dest_path_str}\n"); stdin.write_all(sftp_batch.as_bytes()).await?; - drop(stdin); + stdin.flush().await?; } let output = child.output().await?;