Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/cli/run/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ export async function run(options: RunOptions): Promise<number> {
return 1
}

console.log(pc.dim(`Session: ${sessionID}`))

const ctx: RunContext = {
client,
Expand Down
2 changes: 0 additions & 2 deletions src/hooks/comment-checker/downloader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ export async function downloadCommentChecker(): Promise<string | null> {
const downloadUrl = `https://github.com/${REPO}/releases/download/v${version}/${assetName}`

debugLog(`Downloading from: ${downloadUrl}`)
console.log(`[oh-my-opencode] Downloading comment-checker binary...`)

try {
// Ensure cache directory exists
Expand Down Expand Up @@ -166,7 +165,6 @@ export async function downloadCommentChecker(): Promise<string | null> {
}

debugLog(`Successfully downloaded binary to: ${binaryPath}`)
console.log(`[oh-my-opencode] comment-checker binary ready.`)

return binaryPath

Expand Down
2 changes: 0 additions & 2 deletions src/tools/ast-grep/downloader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ export async function downloadAstGrep(version: string = DEFAULT_VERSION): Promis
const assetName = `app-${arch}-${os}.zip`
const downloadUrl = `https://github.com/${REPO}/releases/download/${version}/${assetName}`

console.log(`[oh-my-opencode] Downloading ast-grep binary...`)

try {
if (!existsSync(cacheDir)) {
Expand All @@ -106,7 +105,6 @@ export async function downloadAstGrep(version: string = DEFAULT_VERSION): Promis
chmodSync(binaryPath, 0o755)
}

console.log(`[oh-my-opencode] ast-grep binary ready.`)

return binaryPath
} catch (err) {
Expand Down
1 change: 0 additions & 1 deletion src/tools/system-notify/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export function detectPlatform(): Platform {
if (release.toLowerCase().includes("microsoft")) return "wsl"
} catch (err) {
// /proc/version may not exist on all Linux systems
console.debug('[system-notify] Could not read /proc/version:', err)
}
return "linux"
}
Expand Down
Loading