| | |
| | |
| | |
| | |
| | |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | import { spawn, execSync } from 'child_process'; |
| | import { dirname, join } from 'path'; |
| | import { fileURLToPath } from 'url'; |
| | import { readFileSync } from 'fs'; |
| |
|
| | const __dirname = dirname(fileURLToPath(import.meta.url)); |
| | const root = join(__dirname, '..'); |
| | const pkg = JSON.parse(readFileSync(join(root, 'package.json'), 'utf-8')); |
| |
|
| | |
| | execSync('node ./scripts/check-build-status.js', { |
| | stdio: 'inherit', |
| | cwd: root, |
| | }); |
| |
|
| | const nodeArgs = []; |
| | let sandboxCommand = undefined; |
| | try { |
| | sandboxCommand = execSync('node scripts/sandbox_command.js', { |
| | cwd: root, |
| | }) |
| | .toString() |
| | .trim(); |
| | } catch { |
| | |
| | } |
| | |
| | |
| | |
| | if (process.env.DEBUG && !sandboxCommand) { |
| | if (process.env.SANDBOX) { |
| | const port = process.env.DEBUG_PORT || '9229'; |
| | nodeArgs.push(`--inspect-brk=0.0.0.0:${port}`); |
| | } else { |
| | nodeArgs.push('--inspect-brk'); |
| | } |
| | } |
| |
|
| | nodeArgs.push(join(root, 'packages', 'cli')); |
| | nodeArgs.push(...process.argv.slice(2)); |
| |
|
| | const env = { |
| | ...process.env, |
| | CLI_VERSION: pkg.version, |
| | DEV: 'true', |
| | }; |
| |
|
| | if (process.env.DEBUG) { |
| | |
| | |
| | env.GEMINI_CLI_NO_RELAUNCH = 'true'; |
| | } |
| | const child = spawn('node', nodeArgs, { stdio: 'inherit', env }); |
| |
|
| | child.on('close', (code) => { |
| | process.exit(code); |
| | }); |
| |
|