File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ CC_PUBLIC_PGP_KEY=$(curl -s https://keybase.io/codecovsecurity/pgp_keys.asc)
112
112
then
113
113
exit_if_error " Could not verify signature. Please contact Codecov if problem continues"
114
114
fi
115
- if ! (shasum -a 256 -c " ${cc_filename} .SHA256SUM" || \
115
+ if ! (shasum -a 256 -c " ${cc_filename} .SHA256SUM" 2> /dev/null || \
116
116
sha256sum -c " ${cc_filename} .SHA256SUM" );
117
117
then
118
118
exit_if_error " Could not verify SHASUM. Please contact Codecov if problem continues"
Original file line number Diff line number Diff line change 24
24
exit_if_error " Could not verify signature. Please contact Codecov if problem continues"
25
25
fi
26
26
27
- if ! (shasum -a 256 -c " ${codecov_filename} .SHA256SUM" || \
27
+ if ! (shasum -a 256 -c " ${codecov_filename} .SHA256SUM" 2> /dev/null || \
28
28
sha256sum -c " ${codecov_filename} .SHA256SUM" );
29
29
then
30
30
exit_if_error " Could not verify SHASUM. Please contact Codecov if problem continues"
You can’t perform that action at this time.
0 commit comments