Both runSplit call sites now pass the normalized attachDir instead of the raw directory argument, preserving the Windows backslash fix from issue #568 (commit b601876).
@@ -89,7 +89,7 @@ export class HerdrMultiplexer implements Multiplexer {
const result = await this.runSplit(
[this.agentAreaPaneId],
'down',
- directory,
+ attachDir,
);
paneId = result.paneId;
if (!paneId) {
@@ -104,7 +104,7 @@ export class HerdrMultiplexer implements Multiplexer {
this.targetPaneArg(),
this.paneDirection,
lastRawOutput = result.rawOutput;