We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 007b7f7 commit 4d09028Copy full SHA for 4d09028
1 file changed
action.yml
@@ -125,11 +125,11 @@ runs:
125
fi
126
127
if command -v sha256sum >/dev/null 2>&1; then
128
- if ! echo "$INSTALLATION_SCRIPT_CHECKSUM $script_filepath" | sha256sum --quiet -c -; then
+ if ! echo "$INSTALLATION_SCRIPT_CHECKSUM $script_filepath" | sha256sum -c -; then
129
exit 1
130
131
elif command -v shasum >/dev/null 2>&1; then
132
- if ! echo "$INSTALLATION_SCRIPT_CHECKSUM $script_filepath" | shasum --quiet -a 256 -c -; then
+ if ! echo "$INSTALLATION_SCRIPT_CHECKSUM $script_filepath" | shasum -a 256 -c -; then
133
134
135
else
0 commit comments