Skip to content

Commit f708f9c

Browse files
committed
README updates
1 parent df8cf8c commit f708f9c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ See CISA KEV Catalog at [https://www.cisa.gov/known-exploited-vulnerabilities](h
2626
### Usage via npx
2727

2828
```bash
29-
## Run the tool in the project directory
30-
npx cve-risk-scores@latest
29+
## Run the tool with a CVE ID
30+
npx cve-risk-scores@latest CVE-YYYY-XXXXX
3131
```
3232

3333
### Usage via global install option
@@ -36,7 +36,7 @@ npx cve-risk-scores@latest
3636
## Install the tool globally
3737
npm install -g cve-risk-scores@latest
3838

39-
## Run the tool in the project directory
39+
## Run the tool with a CVE ID
4040
cve-risk-scores CVE-YYYY-XXXXX
4141
```
4242

bin/index.js

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ async function audit(
181181
(async () => {
182182
try {
183183
const options = yargs
184-
.scriptName("npm-epss-audit")
184+
.scriptName("cve-risk-scores")
185185
.usage(
186186
"Usage: $0 <CVE-NUMBER> [-v|--verbose] [-r|--refresh] [-f|--fail-on-past-duedate] [-t|--threshold]"
187187
)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cve-risk-scores",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "Check risk scores for CVEs",
55
"main": "bin/index.js",
66
"bin": {

0 commit comments

Comments
 (0)