Commit 49ef6d67 authored by Andreas Jung's avatar Andreas Jung

fixed detection of zopeskelsrc

parent 3fe20ac4
...@@ -86,7 +86,9 @@ def main(): ...@@ -86,7 +86,9 @@ def main():
configfile = os.path.join(instancehome, 'etc', 'zope.conf') configfile = os.path.join(instancehome, 'etc', 'zope.conf')
if skelsrc is None: if skelsrc is None:
# default to using stock Zope skeleton source # default to using stock Zope skeleton source
skelsrc = os.path.join(zopehome, "skel") # skelsrc = os.path.join(zopehome, "skel")
# 'utilites' dir moved to Zope2.utilities
skelsrc = os.path.join(zopehome, "..", "..", "skel")
inituser = os.path.join(instancehome, "inituser") inituser = os.path.join(instancehome, "inituser")
if not (user or os.path.exists(inituser)): if not (user or os.path.exists(inituser)):
......
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