commit 0abf157889402e2e8a741ac2c6538bcd2e03b407
Author: Ben Sima <ben@bensima.com>
Date: Wed Dec 31 10:39:21 2025
Update work_on_task paths for ben user worktree
Changed from /home/ava/omni to /home/ben/omni/ava
Task-Id: t-302.4
diff --git a/Omni/Agent/Tools/Tasks.hs b/Omni/Agent/Tools/Tasks.hs
index 0daf1374..c84a7e23 100644
--- a/Omni/Agent/Tools/Tasks.hs
+++ b/Omni/Agent/Tools/Tasks.hs
@@ -120,14 +120,14 @@ executeWorkOnTask v = do
-- Returns Right () if process is still running after startup delay.
spawnOrchestrator :: Text -> IO (Either Text ())
spawnOrchestrator tid = do
- let scriptPath = "/home/ava/omni/Omni/Ide/pi-orchestrate.sh"
+ let scriptPath = "/home/ben/omni/ava/Omni/Ide/pi-orchestrate.sh"
createProc =
(Process.proc scriptPath [Text.unpack tid])
{ Process.std_out = Process.NoStream,
Process.std_err = Process.NoStream,
-- Detach from controlling terminal so it keeps running
Process.new_session = True,
- Process.cwd = Just "/home/ava/omni"
+ Process.cwd = Just "/home/ben/omni/ava"
}
-- Try to create the process