From 67c0863e29b715be745daba40ad8f6de076d0793 Mon Sep 17 00:00:00 2001 From: techno-express Date: Mon, 5 Feb 2018 13:31:49 -0500 Subject: [PATCH] testing --- lib/index.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/index.js b/lib/index.js index 8588381..f334a34 100644 --- a/lib/index.js +++ b/lib/index.js @@ -9,14 +9,6 @@ function makeExecutable(){ if (process.platform !== "win32") { FS.chmodSync(filePath, 755); } - - // add platform binary to environment path - var envPath = process.env.path; - if (envPath.indexOf('7za') < 0) { - process.env.path += (envPath[envPath.length -1] === ';') ? binarypath : ';' + binarypath; - } - - return; } var Zip = function () {};