From 0ae24004e20834b127ed812d7009d31d11fd47a4 Mon Sep 17 00:00:00 2001 From: James Kessler Date: Thu, 10 Oct 2024 19:30:22 -0400 Subject: [PATCH] Change command to to be compatible with alpine distros. (#227) Replaces #198 and closes #197 --- 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