mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-11 21:01:38 +00:00
fix: small edits
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user