error: the argument '--algorithm <ALGORITHM>' cannot be used with '--tag'
According to readme it is possible to use `-a 256` with `--tag`: > Create for a file a hash Sha3-256 with output BSD style `sha3sum -a 256 --tag <path to file>` But when I try: ```zsh sha3sum -a 256 -b --tag changelog.txt ``` I get the following error message: ```text error: the argument '--algorithm <ALGORITHM>' cannot be used with '--tag' Usage: sha3sum --algorithm <ALGORITHM> --binary <FILES>... For more information, try '--help'. ``` Version: ```zsh sha3sum --version ``` ```text sha3sum 1.2.0 ```
issue