diff --git a/README.md b/README.md index 0cc8204..7ea93c1 100644 --- a/README.md +++ b/README.md @@ -37,10 +37,10 @@ Install the `apkup` package globally or locally: ```bash npm i -g apkup -apkup -h +apkup --help # or if you just want to use the CLI locally -npx apkup -h +npx apkup --help # or install the library into your project npm i -D apkup diff --git a/src/cli/index.ts b/src/cli/index.ts index 200d49c..8f69628 100644 --- a/src/cli/index.ts +++ b/src/cli/index.ts @@ -33,4 +33,5 @@ const argv = yargs .command(promote) .command(upload) .env('APKUP') - .help('help').argv + .help('help') + .alias('help', 'h').argv