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
--strict without --check is meaningless, and we should raise an error accordingly. Just like GNU does:
$ ../gnu/src/md5sum --strict < /dev/null../gnu/src/md5sum: the --strict option is meaningful only when verifying checksumsTry '../gnu/src/md5sum --help' for more information.[$? = 1]
$ cargo run -q md5sum --strict < /dev/nulld41d8cd98f00b204e9800998ecf8427e -
$ # No error!
Found while reviewing #6431, but also present on current main (2769a5c).