Make root bin relative
This commit is contained in:
parent
183aba4b6f
commit
d07c7d747e
2
index.js
2
index.js
|
@ -58,7 +58,7 @@ const paths = dir => {
|
||||||
|
|
||||||
|
|
||||||
const includePath = `${nanInclude} ${thisInclude}`;
|
const includePath = `${nanInclude} ${thisInclude}`;
|
||||||
const binPath = `${rootPath}/${currentDir}`;
|
const binPath = currentDir;
|
||||||
|
|
||||||
const mkdirPath = isWindows ? `${rootPath}/_mkdir.bat` : 'mkdir';
|
const mkdirPath = isWindows ? `${rootPath}/_mkdir.bat` : 'mkdir';
|
||||||
const rmPath = isWindows ? `${rootPath}/_rm.bat` : 'rm';
|
const rmPath = isWindows ? `${rootPath}/_rm.bat` : 'rm';
|
||||||
|
|
Loading…
Reference in New Issue