nvicode 0.1.15 → 0.1.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/cli.js +1 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -714,8 +714,6 @@ const ensureOpenClawConfigured = async (openclawBinary, config, activeApiKey) =>
|
|
|
714
714
|
"advanced",
|
|
715
715
|
"--auth-choice",
|
|
716
716
|
"custom-api-key",
|
|
717
|
-
"--secret-input-mode",
|
|
718
|
-
"ref",
|
|
719
717
|
"--custom-provider-id",
|
|
720
718
|
providerId,
|
|
721
719
|
"--custom-compatibility",
|
|
@@ -763,7 +761,7 @@ const runLaunchOpenClaw = async (args) => {
|
|
|
763
761
|
const openclawBinary = await resolveOpenClawBinary();
|
|
764
762
|
const { env, updated } = await ensureOpenClawConfigured(openclawBinary, config, activeApiKey);
|
|
765
763
|
if (updated) {
|
|
766
|
-
console.error("nvicode updated the default OpenClaw config. Restart the OpenClaw gateway to apply it: `openclaw gateway restart
|
|
764
|
+
console.error("nvicode updated the default OpenClaw config. Restart the OpenClaw gateway to apply it: `openclaw gateway restart` (or `openclaw gateway run` for a foreground test).");
|
|
767
765
|
}
|
|
768
766
|
const child = spawnClaudeProcess(openclawBinary, args, env);
|
|
769
767
|
await new Promise((resolve, reject) => {
|