From c7822e3ec2ceb9a018f931c1309ae8884be9056d Mon Sep 17 00:00:00 2001 From: eccgecko <36884529+eccgecko@users.noreply.github.com> Date: Thu, 18 Jun 2026 15:53:21 +0100 Subject: [PATCH] fix(wasm): make whole vendored tailscale tree writable before patching (#567) --- nix/ssh-wasm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/ssh-wasm.nix b/nix/ssh-wasm.nix index e4a3977..a7b0586 100644 --- a/nix/ssh-wasm.nix +++ b/nix/ssh-wasm.nix @@ -26,7 +26,7 @@ in # Patch Tailscale's derphttp to include DERPPort in WebSocket URLs. # Without this, DERP servers on non-443 ports fail in WASM builds. if [ -f patches/tailscale-derp-port.patch ]; then - chmod -R +w vendor/tailscale.com/derp/derphttp + chmod -R +w vendor/tailscale.com patch -d vendor/tailscale.com -p1 < patches/tailscale-derp-port.patch fi