Commit 36c0cded authored by Chris Withers's avatar Chris Withers

bin\buildout is a .exe on Windows so sys.executable can't run it...

Revert to old style path.
parent 9a6990a7
...@@ -57,4 +57,4 @@ if is_jython: ...@@ -57,4 +57,4 @@ if is_jython:
# Jython needs the script to be called twice via sys.executable # Jython needs the script to be called twice via sys.executable
assert subprocess.Popen([sys.executable] + [bin_buildout]).wait() == 0 assert subprocess.Popen([sys.executable] + [bin_buildout]).wait() == 0
sys.exit(subprocess.Popen([sys.executable] + [bin_buildout]).wait()) sys.exit(subprocess.Popen(bin_buildout).wait())
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment