@afffun/codexbot 1.0.95 → 1.0.96

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afffun/codexbot",
3
- "version": "1.0.95",
3
+ "version": "1.0.96",
4
4
  "description": "Thin npm bootstrap CLI for installing and operating Codexbot nodes",
5
5
  "type": "module",
6
6
  "author": "john88188 <john88188@outlook.com>",
@@ -200,6 +200,12 @@ export function createNpmDistributionInstallService(deps = {}) {
200
200
  const args = [
201
201
  tempInstallPath,
202
202
  '--manifest-url', urls.manifestUrl,
203
+ ...(distributionMode === 'install'
204
+ ? ['--install-base-url', urls.installBaseUrl]
205
+ : []),
206
+ ...(distributionMode === 'install'
207
+ ? ['--update-base-url', urls.updateBaseUrl]
208
+ : []),
203
209
  ...(distributionMode === 'install'
204
210
  ? ['--runtime-remote-update-manifest-url', urls.runtimeManifestUrl]
205
211
  : []),