chore: reduce root-directory clutter (#1275)

Co-authored-by: Orca <help@stably.ai>
This commit is contained in:
Neil
2026-04-30 00:09:46 -07:00
committed by GitHub
co-authored by Orca
parent 61909fff03
commit 4318f3bfa7
17 changed files with 20 additions and 21 deletions
+2 -2
View File
@@ -6,8 +6,8 @@ import { execFileSync } from 'node:child_process'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
const repoRoot = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '../..')
const source = path.join(repoRoot, 'bin', 'orca-dev')
const scriptDir = path.dirname(fileURLToPath(import.meta.url))
const source = path.join(scriptDir, 'orca-dev')
const commandPath =
process.platform === 'darwin' || process.platform === 'linux'