Commit f27a9754 authored by Tres Seaver's avatar Tres Seaver

Forward-port fix for non-installed software home from 2.8 branch.

parent 7487880c
......@@ -238,6 +238,8 @@ class ZopeCmd(ZDCmd):
return
script = os.path.join(zope_home, 'bin', 'test.py')
if not os.path.exists(script):
script = os.path.join(zope_home, 'test.py') # no inplace build!
assert os.path.exists(script)
# Supply our config file by default.
......
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