mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Fix: Correct spawnSync parameters for pnpm check in bootstrap.mjs (cl… (#3952)
This commit is contained in:
parent
8da985849f
commit
fe9137b14e
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ function ensurePackageJson() {
|
|||
|
||||
try {
|
||||
// Check if pnpm is installed globally.
|
||||
const pnpmCheck = spawnSync("command", ["-v", "pnpm"], { shell: true })
|
||||
const pnpmCheck = spawnSync("pnpm", ["-v"], { shell: true })
|
||||
|
||||
let pnpmInstall
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue