Compare commits

...

2 Commits

Author SHA1 Message Date
calebboyd ba351e0e3a chore: publish 1.1.3 2017-07-05 23:19:54 -05:00
James M. Greene dc76aea5c8 Prepend the Python path for Windows for overriding 2017-07-05 16:57:58 -05:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -471,8 +471,8 @@ function _getNodeCompiler(nodeFileDir, nodeConfigureArgs, nodeMakeArgs, nodeVCBu
var newEnv = process.env
if (isPy !== "python") {
// add the dir of the suposed python exe to path
newEnv.path = process.env.PATH + ";" + path.dirname(isPy)
// add the dir of the supposed python exe to path
newEnv.path = path.dirname(isPy) + ";" + process.env.PATH
}
if (!nodeVCBuildArgs || !nodeVCBuildArgs.length) {
+1 -1
View File
@@ -3,7 +3,7 @@
"name": "nexe",
"description": "create single executables out of your [node/io].js applications",
"license": "MIT",
"version": "1.1.2",
"version": "1.1.3",
"contributors": [
{
"name": "Criag Condon",