From 0c093fde9f0d2a06eef4f503213e18963eb7005a Mon Sep 17 00:00:00 2001 From: Cesar Date: Mon, 2 Oct 2023 17:38:37 +0200 Subject: [PATCH] chore: workspace path in api --- apps/cli/src/api.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/cli/src/api.ts b/apps/cli/src/api.ts index 599581cf..3b3fc569 100644 --- a/apps/cli/src/api.ts +++ b/apps/cli/src/api.ts @@ -39,9 +39,7 @@ async function taskHandler( ): Promise { const workspace = new AgentProtocolWorkspace( - path.join( - process.env.AGENT_WORKSPACE as string, id - ) + path.join(workspaceDir, id) ); const app = createApp({ rootDir,