Skip to content

Commit 04dec33

Browse files
style: format diagnostics-opencode line length
Co-authored-by: Alfonso [Magic Context] <288211368+alfonso-magic-context@users.noreply.github.com>
1 parent febe56f commit 04dec33

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/cli/src/lib/diagnostics-opencode.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,8 @@ function collectHistorianDumps(
440440
async function collectRecentSessions(): Promise<RecentSessionSummary[]> {
441441
// env-first: honor XDG/HOME overrides (and sandboxed doctor test runs)
442442
// instead of Bun's homedir(), which ignores a runtime HOME override.
443-
const dataHome = process.env.XDG_DATA_HOME || join(process.env.HOME || homedir(), ".local", "share");
443+
const dataHome =
444+
process.env.XDG_DATA_HOME || join(process.env.HOME || homedir(), ".local", "share");
444445
const opencodeDbPath = join(dataHome, "opencode", "opencode.db");
445446
if (!existsSync(opencodeDbPath)) return [];
446447

0 commit comments

Comments
 (0)