webmux 0.7.1 → 0.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8018,7 +8018,7 @@ async function attach(worktreeName, cols, rows, initialPane) {
8018
8018
  log.debug(`[term] attach(${worktreeName}) tmuxSession=${tmuxSession} gName=${gName} window=wm-${worktreeName}`);
8019
8019
  killTmuxSession(gName);
8020
8020
  const cmd = buildAttachCmd({ gName, worktreeName, tmuxSession, cols, rows, initialPane });
8021
- const scriptArgs = process.platform === "darwin" ? ["script", "-q", "/dev/null", "bash", "-c", cmd] : ["script", "-q", "-c", cmd, "/dev/null"];
8021
+ const scriptArgs = process.platform === "darwin" ? ["python3", "-c", "import pty,sys;pty.spawn(sys.argv[1:])", "bash", "-c", cmd] : ["script", "-q", "-c", cmd, "/dev/null"];
8022
8022
  const proc = Bun.spawn(scriptArgs, {
8023
8023
  stdin: "pipe",
8024
8024
  stdout: "pipe",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webmux",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "Web dashboard for workmux — browser UI with embedded terminals, PR monitoring, and CI integration",
5
5
  "type": "module",
6
6
  "repository": {