diff options
| author | William Thurston <[email protected]> | 2025-08-05 15:43:15 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-05 22:43:15 +0000 |
| commit | bed6ab1ccea8edfb93c4f53590dffeb0f5c1f10a (patch) | |
| tree | f326d935e397ac1043bff16963277e8fb498955c /scripts | |
| parent | 1b08a6c063da803cb79e7d6df236f32d4b9a6a56 (diff) | |
fix(start): use absolute path to resolve CLI package (#3196)
Co-authored-by: Abhi <[email protected]>
Co-authored-by: Sandy Tao <[email protected]>
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/start.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/start.js b/scripts/start.js index 5ff1a3ac..ae100f28 100644 --- a/scripts/start.js +++ b/scripts/start.js @@ -55,7 +55,7 @@ if (process.env.DEBUG && !sandboxCommand) { } } -nodeArgs.push('./packages/cli'); +nodeArgs.push(join(root, 'packages', 'cli')); nodeArgs.push(...process.argv.slice(2)); const env = { |
