Skip to content

Commit

Permalink
fix: bash
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu-codecov committed Apr 4, 2022
1 parent 9e4b071 commit e2f592f
Show file tree
Hide file tree
Showing 8 changed files with 14,578 additions and 4,732 deletions.
453 changes: 453 additions & 0 deletions dist/629.index.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/629.index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18,838 changes: 14,115 additions & 4,723 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/buildExec.test.ts
Expand Up @@ -85,11 +85,11 @@ test('all arguments', () => {
'-F',
'test2',
'-g',
'--ga',
'--gcovArgs',
'-v',
'--gi',
'--gcovIgnore',
'*.fake',
'--gI',
'--gcovInclude',
'real_file',
'-B',
'thomasrockhu/test',
Expand Down
6 changes: 3 additions & 3 deletions src/buildExec.ts
Expand Up @@ -114,13 +114,13 @@ const buildExec = () => {
execArgs.push('-g');
}
if (gcovArgs) {
execArgs.push('--ga', `${gcovArgs}`);
execArgs.push('--gcovArgs', `${gcovArgs}`);
}
if (gcovIgnore) {
execArgs.push('--gi', `${gcovIgnore}`);
execArgs.push('--gcovIgnore', `${gcovIgnore}`);
}
if (gcovInclude) {
execArgs.push('--gI', `${gcovInclude}`);
execArgs.push('--gcovInclude', `${gcovInclude}`);
}

if (overrideBranch) {
Expand Down
2 changes: 1 addition & 1 deletion src/validate.ts
Expand Up @@ -4,7 +4,7 @@ import * as path from 'path';

import * as core from '@actions/core';
import * as openpgp from 'openpgp';
import * as fetch from 'node-fetch';
import fetch from 'node-fetch';

import {
getBaseUrl,
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
@@ -1,5 +1,5 @@
import * as core from '@actions/core';
import * as fetch from 'node-fetch';
import fetch from 'node-fetch';

const versionInfo = async (platform: string, version?: string) => {
if (version) {
Expand Down

0 comments on commit e2f592f

Please sign in to comment.