Files
oh-my-openagent/src/cli/run/display-chars.ts
YeonGyu-Kim d0bd24bede fix(cli-run): rely on continuation markers for completion
Use hook-written continuation marker state to gate run completion checks and remove the noisy event-stream shutdown timeout log in run mode.
2026-02-17 17:50:47 +09:00

8 lines
202 B
TypeScript

const isCI = Boolean(process.env.CI || process.env.GITHUB_ACTIONS)
export const displayChars = {
treeEnd: isCI ? "`-" : "└─",
treeIndent: " ",
treeJoin: isCI ? " " : " ",
} as const