Commit afecd8e1 authored by Thomas Gambier's avatar Thomas Gambier 🚴🏼

obs/re6st: don't use systems eggs (e.g. if broken buildout is in the path)

parent f8ad9854
Pipeline #39450 failed with stage
in 0 seconds
......@@ -116,11 +116,11 @@ def bootstrap(task):
'buildout:extra-paths=',
'bootstrap'))
# just fix shebang
check_call((sys.executable, 'bin/buildout', 'bootstrap'))
check_call((sys.executable, '-S', 'bin/buildout', 'bootstrap'))
@task(bootstrap, BUILD + "/.installed.cfg")
def buildout(task):
check_call(("bin/buildout",), cwd=BUILD)
check_call((sys.executable, '-S', 'bin/buildout',), cwd=BUILD)
# Touch target in case that buildout had nothing to do.
os.utime(task.output, None)
......
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