From 76ec6a8be3c0e0a5fb1ebc481fb9fe7a826fcbb5 Mon Sep 17 00:00:00 2001 From: "James M. Greene" Date: Wed, 28 Jun 2017 11:59:16 -0500 Subject: [PATCH] Prepend the Python path for Windows for overriding --- src/compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler.js b/src/compiler.js index 2579979..9f3070f 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -44,7 +44,7 @@ export class NexeCompiler { if (python) { if (isWindows) { - this.env.PATH = this.env.PATH + ';"' + dequote(normalize(python)) + '"' + this.env.PATH = '"' + dequote(normalize(python)) + '";' + this.env.PATH } else { this.env.PYTHON = python }