mirror of
https://github.com/codecov/codecov-action.git
synced 2026-04-06 06:29:24 +00:00
pass root_dir using proper bash arg
This commit is contained in:
parent
4c6543136b
commit
b977d6544b
3 changed files with 4 additions and 4 deletions
|
|
@ -117,7 +117,7 @@ test('all arguments', () => {
|
|||
'2',
|
||||
'-T',
|
||||
'v1.2',
|
||||
'-N',
|
||||
'-R',
|
||||
'root/',
|
||||
'-s',
|
||||
'coverage/',
|
||||
|
|
|
|||
|
|
@ -136,7 +136,7 @@ const buildExec = () => {
|
|||
execArgs.push('-T', `${overrideTag}`);
|
||||
}
|
||||
if (rootDir) {
|
||||
execArgs.push('-N', `${rootDir}`);
|
||||
execArgs.push('-R', `${rootDir}`);
|
||||
}
|
||||
if (searchDir) {
|
||||
execArgs.push('-s', `${searchDir}`);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue