From bc7d804a42f5e9cb933a0403e0cb090c0f5eaeef Mon Sep 17 00:00:00 2001 From: 313838373473747564656e74766775 <133742827+qjtdsqqm94akkyysgjdqo3hx1jn6l17@users.noreply.github.com> Date: Thu, 25 Sep 2025 14:59:04 +0000 Subject: [PATCH] =?UTF-8?q?remote:=20Don=E2=80=99t=20pass=20`--method=3DGE?= =?UTF-8?q?T`=20to=20`wget`=20(#38771)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit BusyBox's off brand `wget` does not have support for the `--method` argument, which makes `zed` incapable of downloading the remote server unless the _☙authentic❧_ one is installed. Removing this should fix the issue. Couldn't find much about guidelines on how the code is supposed to be formatted, so I opted for commenting the line out with an explanation. Closes #38712 Release Notes: - Fixed remote development on BusyBox --- crates/remote/src/transport/ssh.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/remote/src/transport/ssh.rs b/crates/remote/src/transport/ssh.rs index f05bd9d2f5..31ce2fd9f7 100644 --- a/crates/remote/src/transport/ssh.rs +++ b/crates/remote/src/transport/ssh.rs @@ -558,7 +558,6 @@ impl SshRemoteConnection { .run_command( "wget", &[ - "--method=GET", "--header=Content-Type: application/json", "--body-data", body,