zor-ai 0.8.3 → 0.8.4
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/install.js +3 -3
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -21,7 +21,7 @@ const PLATFORM_MAP = {
|
|
|
21
21
|
"linux-x64": {
|
|
22
22
|
archivePlatform: "linux-x86_64",
|
|
23
23
|
checksumPlatform: "linux-x86_64",
|
|
24
|
-
requiredBinaries: ["zorai", "zorai-daemon", "zorai-tui", "zorai-gateway", "zorai-mcp"],
|
|
24
|
+
requiredBinaries: ["zorai", "zorai-daemon", "zorai-tui", "zorai-gateway", "zorai-mcp", "zorai-desktop"],
|
|
25
25
|
},
|
|
26
26
|
"linux-arm64": {
|
|
27
27
|
archivePlatform: "linux-aarch64",
|
|
@@ -41,7 +41,7 @@ const PLATFORM_MAP = {
|
|
|
41
41
|
"win32-x64": {
|
|
42
42
|
archivePlatform: "windows-x64",
|
|
43
43
|
checksumPlatform: "windows-x64",
|
|
44
|
-
requiredBinaries: ["zorai.exe", "zorai-daemon.exe", "zorai-tui.exe", "zorai-gateway.exe", "zorai-mcp.exe"],
|
|
44
|
+
requiredBinaries: ["zorai.exe", "zorai-daemon.exe", "zorai-tui.exe", "zorai-gateway.exe", "zorai-mcp.exe", "zorai-desktop.exe"],
|
|
45
45
|
},
|
|
46
46
|
};
|
|
47
47
|
|
|
@@ -290,7 +290,7 @@ function getInstallUsageHint(isGlobalInstall, globalBinDir) {
|
|
|
290
290
|
return "zorai: run 'zorai --help' once your npm global bin directory is on PATH, and open a new shell if it is not recognized immediately";
|
|
291
291
|
}
|
|
292
292
|
|
|
293
|
-
return "
|
|
293
|
+
return "zor-ai: run with 'npx zor-ai --help' (or 'npm exec zor-ai -- --help') after a local install";
|
|
294
294
|
}
|
|
295
295
|
|
|
296
296
|
function prependDirectoryToPath(env, directory) {
|