Skip to content

Commit 0978945

Browse files
authored
Auto-include TRAVIS_*_VERSION
It's looking at the right variable to see if it _should_ include it, but then actually including the wrong one.
1 parent 7386c3c commit 0978945

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codecov/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def main(*argv, **kwargs):
304304

305305
_add_env_if_not_empty(include_env, 'TRAVIS_OS_NAME')
306306
if language:
307-
_add_env_if_not_empty(include_env, 'TRAVIS_%s_NAME' % language.upper())
307+
_add_env_if_not_empty(include_env, 'TRAVIS_%s_VERSION' % language.upper())
308308

309309
# --------
310310
# Codeship

0 commit comments

Comments
 (0)