mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-09 20:36:25 +00:00
js is hard
This commit is contained in:
4
dist/index.js
vendored
4
dist/index.js
vendored
@@ -2606,7 +2606,7 @@ let buildExec = () => {
|
||||
if (xcode_derived_data) { execArgs.push("-D", `${xcode_derived_data}`); }
|
||||
if (xcode_package) { execArgs.push("-J", `${xcode_package}`); }
|
||||
|
||||
return execArgs, filepath, fail_ci;
|
||||
return { execArgs, filepath, fail_ci };
|
||||
}
|
||||
|
||||
try {
|
||||
@@ -2617,7 +2617,7 @@ try {
|
||||
url: "https://codecov.io/bash"
|
||||
}, (error, response, body) => {
|
||||
try {
|
||||
let execArgs, filepath, fail_ci = buildExec();
|
||||
let { execArgs, filepath, fail_ci } = buildExec();
|
||||
|
||||
console.log(execArgs);
|
||||
console.log(filepath);
|
||||
|
||||
4
index.js
4
index.js
@@ -90,7 +90,7 @@ let buildExec = () => {
|
||||
if (xcode_derived_data) { execArgs.push("-D", `${xcode_derived_data}`); }
|
||||
if (xcode_package) { execArgs.push("-J", `${xcode_package}`); }
|
||||
|
||||
return execArgs, filepath, fail_ci;
|
||||
return { execArgs, filepath, fail_ci };
|
||||
}
|
||||
|
||||
try {
|
||||
@@ -101,7 +101,7 @@ try {
|
||||
url: "https://codecov.io/bash"
|
||||
}, (error, response, body) => {
|
||||
try {
|
||||
let execArgs, filepath, fail_ci = buildExec();
|
||||
let { execArgs, filepath, fail_ci } = buildExec();
|
||||
|
||||
console.log(execArgs);
|
||||
console.log(filepath);
|
||||
|
||||
Reference in New Issue
Block a user