diff --git a/dist/index.js b/dist/index.js index eed19a517..ed9f6f702 100644 --- a/dist/index.js +++ b/dist/index.js @@ -17533,7 +17533,7 @@ Fingerprint._oldVersionDetect = function (obj) { "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); /** @@ -59636,7 +59636,7 @@ var buildExec = function () { execArgs.push('-T', "" + overrideTag); } if (rootDir) { - execArgs.push('-N', "" + rootDir); + execArgs.push('-R', "" + rootDir); } if (searchDir) { execArgs.push('-s', "" + searchDir); diff --git a/src/buildExec.test.ts b/src/buildExec.test.ts index 88eeb593e..7755e8649 100644 --- a/src/buildExec.test.ts +++ b/src/buildExec.test.ts @@ -124,7 +124,7 @@ test('all arguments', () => { '2', '-T', 'v1.2', - '-N', + '-R', 'root/', '-s', 'coverage/', diff --git a/src/buildExec.ts b/src/buildExec.ts index 555f80c7d..8de3b15e4 100644 --- a/src/buildExec.ts +++ b/src/buildExec.ts @@ -144,7 +144,7 @@ const buildExec = () => { execArgs.push('-T', `${overrideTag}`); } if (rootDir) { - execArgs.push('-N', `${rootDir}`); + execArgs.push('-R', `${rootDir}`); } if (searchDir) { execArgs.push('-s', `${searchDir}`);