Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu committed Jun 8, 2021
1 parent c9d0b81 commit 05c7e7f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Expand Up @@ -7220,7 +7220,7 @@ var buildExec = function () {
var filepath = workingDir ?
workingDir + '/codecov.sh' : 'codecov.sh';
var execArgs = [filepath];
execArgs.push('-n', "" + name, '-F', "" + flags, '-Q', 'github-action-1.5.1');
execArgs.push('-n', "" + name, '-F', "" + flags, '-Q', 'github-action-v1.5.1');
var options = {};
options.env = Object.assign(process.env, {
GITHUB_ACTION: process.env.GITHUB_ACTION,
Expand Down
9 changes: 8 additions & 1 deletion src/buildExec.ts
Expand Up @@ -51,7 +51,14 @@ const buildExec = () => {
workingDir + '/codecov.sh' : 'codecov.sh';

const execArgs = [filepath];
execArgs.push( '-n', `${name}`, '-F', `${flags}`, '-Q', 'github-action-1.5.1' );
execArgs.push(
'-n',
`${name}`,
'-F',
`${flags}`,
'-Q',
'github-action-v1.5.1',
);

const options:any = {};
options.env = Object.assign(process.env, {
Expand Down

0 comments on commit 05c7e7f

Please sign in to comment.