Skip to content

Commit 69665a1

Browse files
committed
fixes
1 parent 4adc4c5 commit 69665a1

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

npm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Nuvix CLI npm wrapper package.
55
## Install
66

77
```bash
8-
npm i -g nuvix-cli
8+
npm i -g nuvix
99
```
1010

1111
## Use

npm/bin/nuvix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const exe = process.platform === 'win32' ? 'nuvix.exe' : 'nuvix';
77
const binPath = path.join(__dirname, '..', 'dist', exe);
88

99
if (!fs.existsSync(binPath)) {
10-
console.error('nuvix binary is missing. Reinstall package: npm i -g nuvix-cli');
10+
console.error('nuvix binary is missing. Reinstall package: npm i -g nuvix');
1111
process.exit(1);
1212
}
1313

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "nuvix-cli",
2+
"name": "nuvix",
33
"version": "0.1.0",
44
"description": "Nuvix CLI binary wrapper",
55
"license": "MIT",

npm/scripts/postinstall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const { execFileSync } = require('child_process');
66

77
const pkg = require('../package.json');
88
const version = pkg.version;
9-
const repo = process.env.NUVIX_CLI_REPO || 'Nuvix-dev/cli';
9+
const repo = process.env.NUVIX_CLI_REPO || 'nuvix-dev/cli';
1010
const tag = `v${version}`;
1111

1212
const map = {

0 commit comments

Comments
 (0)