From d76625524db9bf86cdd54156f83e7fff734ea586 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Sun, 26 Oct 2025 21:23:35 -0400 Subject: [PATCH] Change shescape to use global PATH `bash` This broke running cmux on NixOS --- src/runtime/SSHRuntime.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/SSHRuntime.ts b/src/runtime/SSHRuntime.ts index d4be4d433..412d0a7cf 100644 --- a/src/runtime/SSHRuntime.ts +++ b/src/runtime/SSHRuntime.ts @@ -30,7 +30,7 @@ import { execAsync } from "../utils/disposableExec"; * Shescape instance for bash shell escaping. * Reused across all SSH runtime operations for performance. */ -const shescape = new Shescape({ shell: "/bin/bash" }); +const shescape = new Shescape({ shell: "bash" }); /** * SSH Runtime Configuration