Skip to content

Commit 3207ad4

Browse files
authored
Merge pull request #241 from jeffkenney/fix-root-dir-arg
pass root_dir using proper bash arg
2 parents b708b7e + b977d65 commit 3207ad4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17533,7 +17533,7 @@ Fingerprint._oldVersionDetect = function (obj) {
1753317533
"use strict";
1753417534

1753517535

17536-
var RETRIABLE_ERRORS = ['ECONNRESET', 'ENOTFOUND', 'ESOCKETTIMEDOUT', 'ETIMEDOUT', 'ECONNREFUSED', 'EHOSTUNREACH', 'EPIPE', 'EAI_AGAIN'];
17536+
var RETRIABLE_ERRORS = ['ECONNRESET', 'ENOTFOUND', 'ESOCKETTIMEDOUT', 'ETIMEDOUT', 'ECONNREFUSED', 'EHOSTUNREACH', 'EPIPE', 'EAI_AGAIN', 'EBUSY'];
1753717537
var _ = __webpack_require__(557);
1753817538

1753917539
/**
@@ -59636,7 +59636,7 @@ var buildExec = function () {
5963659636
execArgs.push('-T', "" + overrideTag);
5963759637
}
5963859638
if (rootDir) {
59639-
execArgs.push('-N', "" + rootDir);
59639+
execArgs.push('-R', "" + rootDir);
5964059640
}
5964159641
if (searchDir) {
5964259642
execArgs.push('-s', "" + searchDir);

src/buildExec.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ test('all arguments', () => {
124124
'2',
125125
'-T',
126126
'v1.2',
127-
'-N',
127+
'-R',
128128
'root/',
129129
'-s',
130130
'coverage/',

src/buildExec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ const buildExec = () => {
144144
execArgs.push('-T', `${overrideTag}`);
145145
}
146146
if (rootDir) {
147-
execArgs.push('-N', `${rootDir}`);
147+
execArgs.push('-R', `${rootDir}`);
148148
}
149149
if (searchDir) {
150150
execArgs.push('-s', `${searchDir}`);

0 commit comments

Comments
 (0)