You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When sha256sum is run, I can see that it complains about the use of the --quiet
flag, which does not have any effect when not verifying two checksums match.
$ goenv install 1.23.1
sha256sum: the --quiet option is meaningful only when
verifying checksums
Try 'sha256sum --help' for more information.
Downloading go1.23.1.linux-arm64.tar.gz...
This can be shown outside goenv as well for both the sha256sum and sha1sum
facilities on my device.
For example:
➜ ~ echo test | sha256sum --quiet
sha256sum: the --quiet option is meaningful only when
verifying checksums
Try 'sha256sum --help' for more information.
➜ ~ echo $?
1
➜ ~ echo test | sha256sum
f2ca1bb6c7e907d06dafe4687e579fce76b37e4e93b7605022da52e6ccc26fd2 -
➜ ~ echo $?
0
➜ ~ sha256sum --version
sha256sum (GNU coreutils) 9.5
Copyright (C) 2024 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by Ulrich Drepper, Scott Miller, and David Madore.
This commit removes the use of the quiet flag for sha256sum and sha1sum usages.
0 commit comments