refactor: remove unneeded codecov copy and unlink

This commit is contained in:
Tom Hu
2021-06-11 13:03:50 -04:00
parent bb99ca5cc2
commit 861141ec76
4 changed files with 24 additions and 94 deletions

View File

@@ -50,7 +50,7 @@ const buildExec = () => {
const xcodePackage = core.getInput('xcode_package');
const filepath = workingDir ?
workingDir + '/codecov.sh' : 'codecov.sh';
workingDir + '/codecov' : 'codecov';
const execArgs = [filepath];
execArgs.push(
@@ -182,7 +182,7 @@ const buildExec = () => {
execArgs.push('-J', `${xcodePackage}`);
}
return {execArgs, options, filepath, failCi};
return {execArgs, options, failCi};
};
export default buildExec;