mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-10 21:17:24 +00:00
Merge pull request #241 from jeffkenney/fix-root-dir-arg
pass root_dir using proper bash arg
This commit is contained in:
commit
3207ad4e60
3 changed files with 4 additions and 4 deletions
4
dist/index.js
vendored
4
dist/index.js
vendored
|
|
@ -17533,7 +17533,7 @@ Fingerprint._oldVersionDetect = function (obj) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
|
||||||
var RETRIABLE_ERRORS = ['ECONNRESET', 'ENOTFOUND', 'ESOCKETTIMEDOUT', 'ETIMEDOUT', 'ECONNREFUSED', 'EHOSTUNREACH', 'EPIPE', 'EAI_AGAIN'];
|
var RETRIABLE_ERRORS = ['ECONNRESET', 'ENOTFOUND', 'ESOCKETTIMEDOUT', 'ETIMEDOUT', 'ECONNREFUSED', 'EHOSTUNREACH', 'EPIPE', 'EAI_AGAIN', 'EBUSY'];
|
||||||
var _ = __webpack_require__(557);
|
var _ = __webpack_require__(557);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -59636,7 +59636,7 @@ var buildExec = function () {
|
||||||
execArgs.push('-T', "" + overrideTag);
|
execArgs.push('-T', "" + overrideTag);
|
||||||
}
|
}
|
||||||
if (rootDir) {
|
if (rootDir) {
|
||||||
execArgs.push('-N', "" + rootDir);
|
execArgs.push('-R', "" + rootDir);
|
||||||
}
|
}
|
||||||
if (searchDir) {
|
if (searchDir) {
|
||||||
execArgs.push('-s', "" + searchDir);
|
execArgs.push('-s', "" + searchDir);
|
||||||
|
|
|
||||||
|
|
@ -124,7 +124,7 @@ test('all arguments', () => {
|
||||||
'2',
|
'2',
|
||||||
'-T',
|
'-T',
|
||||||
'v1.2',
|
'v1.2',
|
||||||
'-N',
|
'-R',
|
||||||
'root/',
|
'root/',
|
||||||
'-s',
|
'-s',
|
||||||
'coverage/',
|
'coverage/',
|
||||||
|
|
|
||||||
|
|
@ -144,7 +144,7 @@ const buildExec = () => {
|
||||||
execArgs.push('-T', `${overrideTag}`);
|
execArgs.push('-T', `${overrideTag}`);
|
||||||
}
|
}
|
||||||
if (rootDir) {
|
if (rootDir) {
|
||||||
execArgs.push('-N', `${rootDir}`);
|
execArgs.push('-R', `${rootDir}`);
|
||||||
}
|
}
|
||||||
if (searchDir) {
|
if (searchDir) {
|
||||||
execArgs.push('-s', `${searchDir}`);
|
execArgs.push('-s', `${searchDir}`);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue