mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-26 05:49:44 +00:00
misc/build_helpers/run_trial.py: look for zetuptoolz egg in the parent directory, not the cwd of run_trial. refs #1190
This commit is contained in:
parent
647aa74d68
commit
8835f009d0
@ -32,7 +32,7 @@ __requires__ = [APPNAME + '==' + version] + install_requires + test_requires
|
||||
|
||||
print "Requirements: %r" % (__requires__,)
|
||||
|
||||
eggz = glob.glob('setuptools-*.egg')
|
||||
eggz = glob.glob(os.path.join('..', 'setuptools-*.egg'))
|
||||
if len(eggz) > 0:
|
||||
egg = os.path.realpath(eggz[0])
|
||||
print "Inserting egg on sys.path: %r" % (egg,)
|
||||
|
Loading…
x
Reference in New Issue
Block a user