Skip to content

Commit a4af1ba

Browse files
authored
fix(spawn): run agent directly via ssh without tmux (#21)
* fix(spawn): run agent directly via ssh instead of attaching tmux * chore: version bump for spawn-dock tmux fix
1 parent 0126878 commit a4af1ba

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

.changeset/remove-tmux.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@spawn-dock/cli": patch
3+
---
4+
5+
fix: execute agent directly via ssh instead of attaching tmux in spawn command

packages/app/src/docker-git/spawn.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ import {
1111
type TemplateConfig
1212
} from "@effect-template/lib/core/domain"
1313
import type { SpawnCommand } from "@effect-template/lib/core/spawn-domain"
14-
import { runCommandCapture, runCommandExitCode, runCommandWithExitCodes } from "@effect-template/lib/shell/command-runner"
14+
import {
15+
runCommandCapture,
16+
runCommandExitCode,
17+
runCommandWithExitCodes
18+
} from "@effect-template/lib/shell/command-runner"
1519
import { readProjectConfig } from "@effect-template/lib/shell/config"
1620
import { CommandFailedError, SpawnProjectDirError, SpawnSetupError } from "@effect-template/lib/shell/errors"
1721
import { createProject } from "@effect-template/lib/usecases/actions"

0 commit comments

Comments
 (0)