Skip to content

Commit 36d4af2

Browse files
authored
Change shescape to use global PATH bash (#440)
This broke running cmux on NixOS
1 parent c564e72 commit 36d4af2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/SSHRuntime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import { execAsync } from "../utils/disposableExec";
3030
* Shescape instance for bash shell escaping.
3131
* Reused across all SSH runtime operations for performance.
3232
*/
33-
const shescape = new Shescape({ shell: "/bin/bash" });
33+
const shescape = new Shescape({ shell: "bash" });
3434

3535
/**
3636
* SSH Runtime Configuration

0 commit comments

Comments
 (0)