@zi.yi/openclaw-easy 1.0.2 → 1.0.3
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/bin/openclaw-easy.mjs +7 -10
- package/package.json +1 -1
package/bin/openclaw-easy.mjs
CHANGED
|
@@ -247,18 +247,15 @@ async function main() {
|
|
|
247
247
|
|
|
248
248
|
if (isWindows) {
|
|
249
249
|
// Windows:手动启动提示
|
|
250
|
-
console.log("\n✓ 配置完成!");
|
|
251
250
|
console.log("\n" + "=".repeat(50));
|
|
252
|
-
console.log("
|
|
251
|
+
console.log(" 📋 接下来的步骤");
|
|
253
252
|
console.log("=".repeat(50));
|
|
254
|
-
console.log("\n
|
|
255
|
-
console.log("
|
|
256
|
-
console.log("\n⚠️
|
|
257
|
-
console.log("\n
|
|
258
|
-
console.log("
|
|
259
|
-
console.log("\n" + "=".repeat(50));
|
|
260
|
-
console.log("💡 提示:推荐使用 WSL2 获得完整的后台运行体验");
|
|
261
|
-
console.log("=".repeat(50) + "\n");
|
|
253
|
+
console.log("\n【1️⃣ 当前终端】复制并运行:");
|
|
254
|
+
console.log(" npx openclaw gateway");
|
|
255
|
+
console.log("\n ⚠️ 此窗口保持开启,关闭会停止服务");
|
|
256
|
+
console.log("\n【2️⃣ 打开新终端】复制并运行:");
|
|
257
|
+
console.log(" npx openclaw dashboard");
|
|
258
|
+
console.log("\n" + "=".repeat(50) + "\n");
|
|
262
259
|
} else {
|
|
263
260
|
// macOS/Linux:自动重启
|
|
264
261
|
console.log("\n正在重启 OpenClaw Gateway...");
|