projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
647aa74
)
misc/build_helpers/run_trial.py: look for zetuptoolz egg in the parent directory...
author
david-sarah
<david-sarah@jacaranda.org>
Fri, 29 Oct 2010 23:03:29 +0000
(16:03 -0700)
committer
david-sarah
<david-sarah@jacaranda.org>
Fri, 29 Oct 2010 23:03:29 +0000
(16:03 -0700)
misc/build_helpers/run_trial.py
patch
|
blob
|
history
diff --git
a/misc/build_helpers/run_trial.py
b/misc/build_helpers/run_trial.py
index 8ea44230dfe621456a577d39d5e8908f47c0a35f..27523206d4ba82c992cba2b78cfe2ac01532d55b 100644
(file)
--- a/
misc/build_helpers/run_trial.py
+++ b/
misc/build_helpers/run_trial.py
@@
-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,)