style: small change to test deploy
Docker Image CI / build-and-push-image (push) Has been cancelled
Maintain Release Merge PR / update-release-pr (push) Has been cancelled
release-please / release-please (push) Has been cancelled
test / test (20.x) (push) Has been cancelled
test / test (22.x) (push) Has been cancelled
test / api-test (22.x) (push) Has been cancelled

Arbitrary whitespace change just to test something.
This commit is contained in:
KernelDeimos
2025-10-03 21:36:44 -04:00
committed by Eric Dubé
parent 4eaba05136
commit 74430da673
+1 -1
View File
@@ -574,7 +574,7 @@ class Kernel extends AdvancedBase {
await fs.promises.writeFile(path_.join(mod_path, 'package.json'), data_json);
return data;
}
async run_npm_install (path) {
const npmCmd = process.platform === "win32" ? "npm.cmd" : "npm";
const proc = spawn(npmCmd, ["install"], { cwd: path, shell: true, stdio: "inherit" });