Merge pull request #241 from jeffkenney/fix-root-dir-arg

pass root_dir using proper bash arg
This commit is contained in:
Tom Hu
2021-03-09 10:14:26 -05:00
committed by GitHub
3 changed files with 4 additions and 4 deletions

View File

@@ -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}`);