@rivocode-cli/cli 2.0.0 → 2.0.2
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/README.md +1 -2
- package/bin/rivo.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,11 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
# RivoCode CLI
|
|
6
6
|
|
|
7
|
-
>> NPMJS PACKAGE INSTALL BUG WILL BE FIXED SOON.
|
|
8
|
-
|
|
9
7
|
**A modern, terminal-native AI coding assistant built for speed, full codebase awareness, and multi-file workflows.**
|
|
10
8
|
|
|
11
9
|
[](https://www.npmjs.com/package/@rivocode-cli/cli)
|
|
10
|
+
[](https://github.com/sanketpadhyal/RivoCode-Cli/releases)
|
|
12
11
|
[](LICENSE)
|
|
13
12
|
[](https://github.com/sanketpadhyal/RivoCode-Cli/releases)
|
|
14
13
|
[](https://nodejs.org)
|
package/bin/rivo.js
CHANGED
|
@@ -25,9 +25,9 @@ function getPackageVersion() {
|
|
|
25
25
|
try {
|
|
26
26
|
const pkgPath = join(__dirname, '..', 'package.json');
|
|
27
27
|
const pkg = JSON.parse(readFileSync(pkgPath, 'utf8'));
|
|
28
|
-
return pkg.version || '
|
|
28
|
+
return pkg.version || '2.0.0';
|
|
29
29
|
} catch {
|
|
30
|
-
return '
|
|
30
|
+
return '2.0.0';
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
|
|
@@ -57,7 +57,7 @@ function getTargetInfo() {
|
|
|
57
57
|
isWindows: false,
|
|
58
58
|
};
|
|
59
59
|
}
|
|
60
|
-
} else if (osType === 'linux') {
|
|
60
|
+
} else if (osType === 'linux' || osType === 'android') {
|
|
61
61
|
if (archType === 'x64') {
|
|
62
62
|
return {
|
|
63
63
|
target: 'linux-x64',
|
|
@@ -67,7 +67,7 @@ function getTargetInfo() {
|
|
|
67
67
|
isWindows: false,
|
|
68
68
|
};
|
|
69
69
|
}
|
|
70
|
-
if (archType === 'arm64') {
|
|
70
|
+
if (archType === 'arm64' || archType === 'arm') {
|
|
71
71
|
return {
|
|
72
72
|
target: 'linux-arm64',
|
|
73
73
|
binaryName: 'rivo-linux-arm64',
|