@lark-apaas/openclaw-scripts-diagnose-cli 0.1.1-alpha.15 → 0.1.1-alpha.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1375,7 +1375,7 @@ function reinstallOpenclaw(srcDir, log) {
|
|
|
1375
1375
|
shell("npm uninstall -g openclaw 2>/dev/null || true", 6e4);
|
|
1376
1376
|
log(`npm uninstall done in ${Date.now() - t}ms`);
|
|
1377
1377
|
} catch {}
|
|
1378
|
-
const installCmd = `npm i -g openclaw@${targetVersion || "latest"}
|
|
1378
|
+
const installCmd = `npm i -g openclaw@${targetVersion || "latest"}`;
|
|
1379
1379
|
log(`running: ${installCmd}`);
|
|
1380
1380
|
const installStart = Date.now();
|
|
1381
1381
|
shell(installCmd, 30 * 6e4);
|
package/package.json
CHANGED