The macOS instructions include a bad command for verifying the checksum. An additional space is needed in the awk input.
awk
# 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:
Metadata Update from @pbokoc: - Issue status updated to: Closed (was: Open)