Skip to content

Commit 23a73c9

Browse files
chore(release): 0.2.4
1 parent 2a6a022 commit 23a73c9

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed

dist/codecov.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ g="\033[0;32m" # info/debug
3737
r="\033[0;31m" # errors
3838
x="\033[0m"
3939
retry="--retry 5 --retry-delay 2"
40-
CC_WRAPPER_VERSION="0.2.3"
40+
CC_WRAPPER_VERSION="0.2.4"
4141
CC_VERSION="${CC_VERSION:-latest}"
4242
CC_FAIL_ON_ERROR="${CC_FAIL_ON_ERROR:-false}"
4343
CC_RUN_CMD="${CC_RUN_CMD:-upload-coverage}"
@@ -101,7 +101,7 @@ if [ "$CC_SKIP_VALIDATION" == "true" ] || [ -n "$CC_BINARY" ] || [ "$CC_USE_PYPI
101101
then
102102
say "$r==>$x Bypassing validation..."
103103
else
104-
CC_PUBLIC_PGP_KEY=$(curl -s https://keybase.io/codecovsecurity/pgp_keys.asc)
104+
CC_PUBLIC_PGP_KEY=$(curl -s https://keybase.io/codecovsecurity/pgp_keys.asc)
105105
echo "${CC_PUBLIC_PGP_KEY}" | \
106106
gpg --no-default-keyring --import
107107
# One-time step

package.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@ def package_scripts(source_dir, source_root, outfile):
2424
for var in sorted_vars:
2525
f.write(f'{var}\n')
2626

27-
print(f"Current script is {len(''.join(lines))} (max: 8191) chars.")
28-
if len(''.join(lines)) > 8191:
29-
print("Due to windows limitations, script must be under 8191 chars.")
30-
exit(1)
31-
3227
def _get_vars(line):
3328
matcher = r'(CC_[\w_]+)'
3429
matches = re.search(matcher, line)

scripts/set_defaults.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
CODECOV_WRAPPER_VERSION="0.2.3"
3+
CODECOV_WRAPPER_VERSION="0.2.4"
44
CODECOV_VERSION="${CODECOV_VERSION:-latest}"
55
CODECOV_FAIL_ON_ERROR="${CODECOV_FAIL_ON_ERROR:-false}"
66
CODECOV_RUN_CMD="${CODECOV_RUN_CMD:-upload-coverage}"

scripts/validate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if [ "$CODECOV_SKIP_VALIDATION" == "true" ] || [ -n "$CODECOV_BINARY" ] || [ "$C
44
then
55
say "$r==>$x Bypassing validation..."
66
else
7-
. ./set_validation_key.sh
7+
CODECOV_PUBLIC_PGP_KEY=$(curl -s https://keybase.io/codecovsecurity/pgp_keys.asc)
88
echo "${CODECOV_PUBLIC_PGP_KEY}" | \
99
gpg --no-default-keyring --import
1010
# One-time step

0 commit comments

Comments
 (0)