Prepend the Python path for Windows for overriding

This commit is contained in:
James M. Greene
2017-06-28 11:59:16 -05:00
committed by calebboyd
parent cac2759d3a
commit 76ec6a8be3
+1 -1
View File
@@ -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
}