#60 Typo in macOS checksum verification command
Closed by pbokoc. Opened by countzachula.

The macOS instructions include a bad command for verifying the checksum. An additional space is needed in the awk input.

# Bad
grep '^SHA256' *-CHECKSUM | awk -F '[()=]' '{ print $4 " " $2 }' | shasum -a 256 -c
# Good
grep '^SHA256' *-CHECKSUM | awk -F '[()=]' '{ print $4 "  " $2 }' | shasum -a 256 -c

Hello, @countzachula I did this PR https://pagure.io/fedora-docs/install-guide/pull-request/81 to fix it :smile:

81 has been merged, thanks for the fix!

Metadata Update from @pbokoc:
- Issue status updated to: Closed (was: Open)

Metadata
Related Pull Requests