diff --git a/dist/index.js b/dist/index.js index 453b596..a6efb8d 100644 --- a/dist/index.js +++ b/dist/index.js @@ -16282,7 +16282,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); /** @@ -54220,7 +54220,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 83d819b..5a0df7c 100644 --- a/src/buildExec.test.ts +++ b/src/buildExec.test.ts @@ -117,7 +117,7 @@ test('all arguments', () => { '2', '-T', 'v1.2', - '-N', + '-R', 'root/', '-s', 'coverage/', diff --git a/src/buildExec.ts b/src/buildExec.ts index 22dfd29..ad3b233 100644 --- a/src/buildExec.ts +++ b/src/buildExec.ts @@ -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}`);