mirror of
https://github.com/codecov/codecov-action.git
synced 2026-04-06 06:29:24 +00:00
fix: small edits
This commit is contained in:
parent
f37520c6b0
commit
ac6033346c
5 changed files with 17 additions and 11 deletions
|
|
@ -85,11 +85,11 @@ test('all arguments', () => {
|
|||
'-F',
|
||||
'test2',
|
||||
'-g',
|
||||
'-ga',
|
||||
'--ga',
|
||||
'-v',
|
||||
'-gi',
|
||||
'--gi',
|
||||
'*.fake',
|
||||
'-gI',
|
||||
'--gI',
|
||||
'real_file',
|
||||
'-B',
|
||||
'thomasrockhu/test',
|
||||
|
|
|
|||
|
|
@ -114,13 +114,13 @@ const buildExec = () => {
|
|||
execArgs.push('-g');
|
||||
}
|
||||
if (gcovArgs) {
|
||||
execArgs.push('-ga', `${gcovArgs}`);
|
||||
execArgs.push('--ga', `${gcovArgs}`);
|
||||
}
|
||||
if (gcovIgnore) {
|
||||
execArgs.push('-gi', `${gcovIgnore}`);
|
||||
execArgs.push('--gi', `${gcovIgnore}`);
|
||||
}
|
||||
if (gcovInclude) {
|
||||
execArgs.push('-gI', `${gcovInclude}`);
|
||||
execArgs.push('--gI', `${gcovInclude}`);
|
||||
}
|
||||
|
||||
if (overrideBranch) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue