vibe-cokit 1.11.1 → 1.11.2
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/cli.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -2625,7 +2625,7 @@ async function upgradeCli() {
|
|
|
2625
2625
|
try {
|
|
2626
2626
|
await exec2("rm", ["-rf", join2(homedir2(), ".bun", "install", "cache")]);
|
|
2627
2627
|
} catch {}
|
|
2628
|
-
await exec2("bun", ["install", "-g", `vibe-cokit@${latestVersion}`]);
|
|
2628
|
+
await exec2("bun", ["install", "-g", "--registry", "https://registry.npmjs.org", `vibe-cokit@${latestVersion}`]);
|
|
2629
2629
|
return { upgraded: true, from: currentVersion, to: latestVersion };
|
|
2630
2630
|
}
|
|
2631
2631
|
async function copyAgentFolder(srcDir) {
|