Commit 3ff2393d authored by chrisw's avatar chrisw

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

Revert to old style path.

git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@103647 62d5b8a3-27da-0310-9561-8e5933582275
parent 09194cf7
......@@ -57,4 +57,4 @@ if is_jython:
# Jython needs the script to be called twice via sys.executable
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