From d07c7d747e7192de17b613f14fae81989eb11d2a Mon Sep 17 00:00:00 2001 From: Luis Blanco Date: Sun, 13 May 2018 22:54:35 +0300 Subject: [PATCH] Make root bin relative --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index b91f738..aaeadda 100644 --- a/index.js +++ b/index.js @@ -58,7 +58,7 @@ const paths = dir => { const includePath = `${nanInclude} ${thisInclude}`; -const binPath = `${rootPath}/${currentDir}`; +const binPath = currentDir; const mkdirPath = isWindows ? `${rootPath}/_mkdir.bat` : 'mkdir'; const rmPath = isWindows ? `${rootPath}/_rm.bat` : 'rm';