mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-07 19:47:25 +00:00
more console
This commit is contained in:
parent
8ad88ccc68
commit
d9d5217980
2 changed files with 6 additions and 2 deletions
4
dist/index.js
vendored
4
dist/index.js
vendored
|
|
@ -2606,7 +2606,6 @@ let buildExec = () => {
|
|||
if (xcode_derived_data) { execArgs.push("-D", `${xcode_derived_data}`); }
|
||||
if (xcode_package) { execArgs.push("-J", `${xcode_package}`); }
|
||||
|
||||
console.log(execArgs);
|
||||
return execArgs, filepath, fail_ci;
|
||||
}
|
||||
|
||||
|
|
@ -2620,6 +2619,9 @@ try {
|
|||
try {
|
||||
let execArgs, filepath, fail_ci = buildExec();
|
||||
|
||||
console.log(execArgs);
|
||||
console.log(filepath);
|
||||
|
||||
if (error && fail_ci) {
|
||||
throw error;
|
||||
} else if (error) {
|
||||
|
|
|
|||
4
index.js
4
index.js
|
|
@ -90,7 +90,6 @@ let buildExec = () => {
|
|||
if (xcode_derived_data) { execArgs.push("-D", `${xcode_derived_data}`); }
|
||||
if (xcode_package) { execArgs.push("-J", `${xcode_package}`); }
|
||||
|
||||
console.log(execArgs);
|
||||
return execArgs, filepath, fail_ci;
|
||||
}
|
||||
|
||||
|
|
@ -104,6 +103,9 @@ try {
|
|||
try {
|
||||
let execArgs, filepath, fail_ci = buildExec();
|
||||
|
||||
console.log(execArgs);
|
||||
console.log(filepath);
|
||||
|
||||
if (error && fail_ci) {
|
||||
throw error;
|
||||
} else if (error) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue