mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-07 19:47:25 +00:00
syntax error fix
This commit is contained in:
parent
94278ffe1b
commit
a6d365dd4c
2 changed files with 2 additions and 2 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
|
@ -20852,7 +20852,7 @@ try {
|
|||
}
|
||||
|
||||
const execArgs = ["codecov.sh"];
|
||||
const testExecArgs = ["bash", "<(curl", "-s", "https://codecov.io/bash)"]
|
||||
const testExecArgs = ["<(curl", "-s", "https://codecov.io/bash)"]
|
||||
if (file) {
|
||||
execArgs.push(
|
||||
"-f", `${file}`
|
||||
|
|
|
|||
2
index.js
2
index.js
|
|
@ -63,7 +63,7 @@ try {
|
|||
}
|
||||
|
||||
const execArgs = ["codecov.sh"];
|
||||
const testExecArgs = ["bash", "<(curl", "-s", "https://codecov.io/bash)"]
|
||||
const testExecArgs = ["<(curl", "-s", "https://codecov.io/bash)"]
|
||||
if (file) {
|
||||
execArgs.push(
|
||||
"-f", `${file}`
|
||||
|
|
|
|||
Loading…
Reference in a new issue