mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-09 20:47:26 +00:00
fix curl cmmd
This commit is contained in:
parent
3e70efe265
commit
8edb23c289
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
|
@ -22,7 +22,7 @@ try {
|
|||
const payload = JSON.stringify(github.context.payload, undefined, 2)
|
||||
console.log(`The event payload: ${payload}`);
|
||||
|
||||
const command = `curl <(bash https://codecov.io) -t ${token} -n ${name} -F ${flags} -f ${file}`
|
||||
const command = `curl <(bash https://codecov.io/bash) -t ${token} -n ${name} -F ${flags} -f ${file}`
|
||||
exec(command, (err, stdout, stderr) => {
|
||||
if (err) {
|
||||
//some err occurred
|
||||
|
|
|
|||
Loading…
Reference in a new issue