From 02d81d60daac8c8d9396de8b5eeca0a078f25166 Mon Sep 17 00:00:00 2001 From: James Kessler Date: Thu, 10 Oct 2024 16:17:28 -0700 Subject: [PATCH] Change command to to be compatible with alpine distros. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index bb11582d..ab37dc7f 100644 --- a/action.yml +++ b/action.yml @@ -132,7 +132,7 @@ runs: fi # Try to verify the downloaded binary - if ! grep coveralls-linux.tar.gz coveralls-checksums.txt | sha256sum --check; then + if ! grep coveralls-linux.tar.gz coveralls-checksums.txt | sha256sum -c; then echo "Checksum verification failed (Linux)." [ "${{ inputs.fail-on-error }}" == "false" ] && exit 0 exit 1