Open
Description
I have no reason to believe what I'm downloading doesn't work or is invalid. But following the provided steps doesn't seem to work as expected: https://smithy.io/2.0/guides/smithy-cli/cli_installation.html#verification-optional
The first step
curl -L 'https://github.com/smithy-lang/smithy/releases/download/1.53.0/smithy-cli-linux-x86_64.zip.{asc,sha256}' -o 'smithy-install/smithy-cli-linux-x86_64.zip.#1'
works fine but when I get to
(cd smithy-install && sha256sum -c smithy-cli-linux-x86_64.zip.sha256)
I get back the error.
sha256sum: smithy-cli-linux-x86_64.zip.sha256: no properly formatted SHA256 checksum lines found
Then running the next command
curl -L https://github.com/smithy-lang/smithy/releases/download/1.53.0/smithy.asc -o smithy-install/smithy.asc && \
gpg --import smithy-install/smithy.asc
gives
gpg: no valid OpenPGP data found.
gpg: Total number processed: 0
The second issue I believe is because the referenced smithy.asc
file doesn't exist so nothing gets downloaded. I at least don't see it on the release page here.