@rivocode-cli/cli 2.0.1 → 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 CHANGED
@@ -7,6 +7,7 @@
7
7
  **A modern, terminal-native AI coding assistant built for speed, full codebase awareness, and multi-file workflows.**
8
8
 
9
9
  [![npm version](https://img.shields.io/npm/v/@rivocode-cli/cli?style=flat-square&color=007ACC&label=npm%20package)](https://www.npmjs.com/package/@rivocode-cli/cli)
10
+ [![GitHub release](https://img.shields.io/github/v/release/sanketpadhyal/RivoCode-Cli?style=flat-square&color=green)](https://github.com/sanketpadhyal/RivoCode-Cli/releases)
10
11
  [![License](https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square)](LICENSE)
11
12
  [![Platform](https://img.shields.io/badge/Platform-macOS%20%7C%20Windows%20%7C%20Linux-lightgrey?style=flat-square)](https://github.com/sanketpadhyal/RivoCode-Cli/releases)
12
13
  [![Node Version](https://img.shields.io/badge/Node.js-%3E%3D20.0.0-green?style=flat-square)](https://nodejs.org)
package/bin/rivo.js CHANGED
@@ -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',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivocode-cli/cli",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "RivoCode — AI-powered terminal coding assistant",
5
5
  "author": "Sanket Padhyal <mrsanketpadhyal@gmail.com>",
6
6
  "license": "MIT",