Skip to content

Commit b795006

Browse files
Merge pull request #40 from codecov/th/disable-telem
feat: add disable-telem
2 parents e8354da + cf69b12 commit b795006

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

dist/codecov.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
CC_WRAPPER_VERSION="0.0.31"
2+
CC_WRAPPER_VERSION="0.0.32"
33
set +u
44
say() {
55
echo -e "$1"
@@ -134,6 +134,7 @@ then
134134
cc_cli_args+=( "--codecov-yml-path" )
135135
cc_cli_args+=( "$CC_YML_PATH" )
136136
fi
137+
cc_cli_args+=( $(write_truthy_args CC_DISABLE_TELEM) )
137138
cc_cli_args+=( $(write_truthy_args CC_VERBOSE) )
138139
cc_uc_args=()
139140
# Args for create commit

env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ CC_CODE
99
CC_DIR
1010
CC_DISABLE_FILE_FIXES
1111
CC_DISABLE_SEARCH
12+
CC_DISABLE_TELEM
1213
CC_DOWNLOAD_ONLY
1314
CC_DRY_RUN
1415
CC_ENTERPRISE_URL

scripts/set_cli_args.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ then
99
codecov_cli_args+=( "--codecov-yml-path" )
1010
codecov_cli_args+=( "$CODECOV_YML_PATH" )
1111
fi
12+
codecov_cli_args+=( $(write_truthy_args CODECOV_DISABLE_TELEM) )
1213
codecov_cli_args+=( $(write_truthy_args CODECOV_VERBOSE) )

scripts/version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/usr/bin/env bash
2-
CODECOV_WRAPPER_VERSION="0.0.31"
2+
CODECOV_WRAPPER_VERSION="0.0.32"

0 commit comments

Comments
 (0)