Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Changed the command used to verify with SHASUMS256.txt to another that is simpler and allows you to verify all downloads so you don't have to specify each of them one by one.
  • Loading branch information
adriancuadrado authored Oct 17, 2024
1 parent e2242b4 commit 49c19b5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,10 @@ To download `SHASUMS256.txt` using `curl`:
curl -O https://nodejs.org/dist/vx.y.z/SHASUMS256.txt
```

To check that a downloaded file matches the checksum, run
it through `sha256sum` with a command such as:
To check that downloaded files match the checksum, use `sha256sum`:

```bash
grep node-vx.y.z.tar.gz SHASUMS256.txt | sha256sum -c -
sha256sum -c SHASUMS256.txt --ignore-missing
```

For Current and LTS, the GPG detached signature of `SHASUMS256.txt` is in
Expand Down

0 comments on commit 49c19b5

Please sign in to comment.