File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- CC_WRAPPER_VERSION=" 0.0.20 "
2
+ CC_WRAPPER_VERSION=" 0.0.21 "
3
3
say () {
4
4
echo -e " $1 "
5
5
}
@@ -96,8 +96,8 @@ CC_PUBLIC_PGP_KEY=$(curl https://keybase.io/codecovsecurity/pgp_keys.asc)
96
96
say " $g ->$x Downloading $b ${sha_url} $x "
97
97
say " $g ->$x Downloading $b ${sha_url} .sig$x "
98
98
say " "
99
- curl -Os " $sha_url "
100
- curl -Os " ${sha_url} .sig"
99
+ curl -Os --retry 5 --retry-delay 2 --connect-timeout 2 " $sha_url "
100
+ curl -Os --retry 5 --retry-delay 2 --connect-timeout 2 " ${sha_url} .sig"
101
101
if ! gpg --verify " ${cc_filename} .SHA256SUM.sig" " ${cc_filename} .SHA256SUM" ;
102
102
then
103
103
exit_if_error " Could not verify signature. Please contact Codecov if problem continues"
Original file line number Diff line number Diff line change 16
16
say " $g ->$x Downloading $b ${sha_url} .sig$x "
17
17
say " "
18
18
19
- curl -Os " $sha_url "
20
- curl -Os " ${sha_url} .sig"
19
+ curl -Os --retry 5 --retry-delay 2 --connect-timeout 2 " $sha_url "
20
+ curl -Os --retry 5 --retry-delay 2 --connect-timeout 2 " ${sha_url} .sig"
21
21
22
22
if ! gpg --verify " ${codecov_filename} .SHA256SUM.sig" " ${codecov_filename} .SHA256SUM" ;
23
23
then
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- CODECOV_WRAPPER_VERSION=" 0.0.20 "
2
+ CODECOV_WRAPPER_VERSION=" 0.0.21 "
You can’t perform that action at this time.
0 commit comments