File tree Expand file tree Collapse file tree 4 files changed +31
-6
lines changed
apps/memos-local-openclaw Expand file tree Collapse file tree 4 files changed +31
-6
lines changed Original file line number Diff line number Diff line change @@ -361,5 +361,18 @@ if (-not (Test-Path $ExtensionDir)) {
361361
362362Update-OpenClawConfig - OpenClawHome $OpenClawHome - ConfigPath $OpenClawConfigPath - PluginId $PluginId - InstallPath $ExtensionDir - Spec $PackageSpec
363363
364- Write-Success " Restarting OpenClaw Gateway..."
365- & npx openclaw gateway run -- port $Port -- force
364+ Write-Info " Installing OpenClaw Gateway service..."
365+ & npx openclaw gateway install -- port $Port -- force 2>&1
366+ if (-not $? ) { Write-Warn " Gateway service install returned a warning; continuing..." }
367+
368+ Write-Success " Starting OpenClaw Gateway service..."
369+ & npx openclaw gateway start 2>&1
370+
371+ Write-Host " "
372+ Write-Success " =========================================="
373+ Write-Success " Installation complete!"
374+ Write-Success " =========================================="
375+ Write-Host " "
376+ Write-Info " OpenClaw Web UI: http://localhost:$Port "
377+ Write-Info " Memory Viewer: http://localhost:18799"
378+ Write-Host " "
Original file line number Diff line number Diff line change 360360
361361update_openclaw_config
362362
363- success " Restart OpenClaw Gateway, 重启 OpenClaw Gateway..."
364- exec npx openclaw gateway run --port " ${PORT} " --force
363+ info " Install OpenClaw Gateway service, 安装 OpenClaw Gateway 服务..."
364+ npx openclaw gateway install --port " ${PORT} " --force 2>&1 || true
365+
366+ success " Start OpenClaw Gateway service, 启动 OpenClaw Gateway 服务..."
367+ npx openclaw gateway start 2>&1
368+
369+ echo " "
370+ success " =========================================="
371+ success " Installation complete! 安装完成!"
372+ success " =========================================="
373+ echo " "
374+ info " OpenClaw Web UI: http://localhost:${PORT} "
375+ info " Memory Viewer: http://localhost:18799"
376+ echo " "
Original file line number Diff line number Diff line change 44# #############################################################################
55
66name = " MemoryOS"
7- version = " 2.0.11 "
7+ version = " 2.0.12 "
88description = " Intelligence Begins with Memory"
99license = {text = " Apache-2.0" }
1010readme = " README.md"
Original file line number Diff line number Diff line change 1- __version__ = "2.0.11 "
1+ __version__ = "2.0.12 "
22
33from memos .configs .mem_cube import GeneralMemCubeConfig
44from memos .configs .mem_os import MOSConfig
You can’t perform that action at this time.
0 commit comments