Skip to content

Commit

Permalink
remove log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Mar 20, 2020
1 parent 2ce3b38 commit 608816e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2396,18 +2396,14 @@ try {
options.env.CODECOV_TOKEN = token
}

console.warn('env_vars:', env_vars)
const env_vars_arg = []

for (let env_var of env_vars.split(",")) {
let env_var_clean = env_var.trim();
if (env_var_clean) {
options.env[env_var_clean] = process.env[env_var_clean];
env_vars_arg.push(env_var_clean)
}
}
console.warn('options.env:', options.env)
console.warn('env_vars_arg:', env_vars_arg)

const execArgs = ["codecov.sh"];
if (file) {
Expand Down
4 changes: 0 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,18 +63,14 @@ try {
options.env.CODECOV_TOKEN = token
}

console.warn('env_vars:', env_vars)
const env_vars_arg = []

for (let env_var of env_vars.split(",")) {
let env_var_clean = env_var.trim();
if (env_var_clean) {
options.env[env_var_clean] = process.env[env_var_clean];
env_vars_arg.push(env_var_clean)
}
}
console.warn('options.env:', options.env)
console.warn('env_vars_arg:', env_vars_arg)

const execArgs = ["codecov.sh"];
if (file) {
Expand Down

0 comments on commit 608816e

Please sign in to comment.