macos integration tests job failing
https://github.com/KomodoPlatform/komodo-defi-framework/actions/runs/17049261583/job/48332671816
Looks like fetch-params-alt.sh failed to call sha256sum:
Download successful!
usage: sha256sum [-bctwz] [files ...]
Error: Process completed with exit code 1.
Just tried fetch-params-alt.sh on latest macos but it worked okay, hmm
We should check sha256sum version and see if it's not compatible with fetch-params-alt.sh (which is the case most likely).
https://github.com/KomodoPlatform/komodo/blob/master/zcutil/fetch-params-alt.sh#L19 checks if sha256sum command is available and if it isn't, uses shasum. the script assumes sha256sum is not available on MacOS. is it somehow available on the MacOS runner we use?
It should be available as it prints
usage: sha256sum [-bctwz] [files ...] Error: Process completed with exit code 1.
It just has different usage than what the script is trying to do. We use shasum on our CI for MacOS btw, maybe that script should do that too.