mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-07 19:47:25 +00:00
const to let
This commit is contained in:
parent
fd07c5fc0c
commit
cf0e744e2c
2 changed files with 2 additions and 2 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
|
@ -272,7 +272,7 @@ try {
|
|||
const flags = core.getInput("flags");
|
||||
const file = core.getInput("file");
|
||||
const yml = core.getInput("yml");
|
||||
const fail_ci = core.getInput("fail_ci_if_error");
|
||||
let fail_ci = core.getInput("fail_ci_if_error");
|
||||
fail_ci = fail_ci.toLowerCase();
|
||||
|
||||
request("https://codecov.io/bash", (error, response, body) => {
|
||||
|
|
|
|||
2
index.js
2
index.js
|
|
@ -9,7 +9,7 @@ try {
|
|||
const flags = core.getInput("flags");
|
||||
const file = core.getInput("file");
|
||||
const yml = core.getInput("yml");
|
||||
const fail_ci = core.getInput("fail_ci_if_error");
|
||||
let fail_ci = core.getInput("fail_ci_if_error");
|
||||
fail_ci = fail_ci.toLowerCase();
|
||||
|
||||
request("https://codecov.io/bash", (error, response, body) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue