Skip to content

Commit

Permalink
Merge pull request #266 from polywrap/fix/workspace-dir-in-api
Browse files Browse the repository at this point in the history
fix: workspace path in api
  • Loading branch information
nerfZael authored Oct 2, 2023
2 parents cb843ca + 0c093fd commit b344459
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions apps/cli/src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,7 @@ async function taskHandler(
): Promise<StepHandler> {

const workspace = new AgentProtocolWorkspace(
path.join(
process.env.AGENT_WORKSPACE as string, id
)
path.join(workspaceDir, id)
);
const app = createApp({
rootDir,
Expand Down

0 comments on commit b344459

Please sign in to comment.