@vrs-soft/wecom-aibot-mcp 2.4.4 → 2.4.5
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/bin.js +2 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -320,7 +320,8 @@ async function main() {
|
|
|
320
320
|
// --version / -v: 只查版本,不写配置
|
|
321
321
|
const skipEnsure = args.includes('--reinstall') || args.includes('--http-only') ||
|
|
322
322
|
args.includes('--setup') || args.includes('--channel') ||
|
|
323
|
-
args.includes('--version') || args.includes('-v')
|
|
323
|
+
args.includes('--version') || args.includes('-v') ||
|
|
324
|
+
args.includes('--start') || args.includes('--debug');
|
|
324
325
|
if (!skipEnsure) {
|
|
325
326
|
// 强制覆盖所有全局配置(不依赖智能体)
|
|
326
327
|
ensureGlobalConfigs(installMode);
|