Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorC. Scott Ananian <cscott@laptop.org>2008-09-26 06:56:57 (GMT)
committer C. Scott Ananian <cscott@laptop.org>2008-09-26 06:56:57 (GMT)
commit4e7e5475eca62dd3df4fb854c63608281b4e7d43 (patch)
tree648a7c618f32c26dee23fbabdd04c44adc40d9fe
parent84aa3b577ad5d1460da277e29bb76a2003f89c24 (diff)
Trac #8665, cont: ./setup.py dist_xo puts the .xo file in dist/ now.
We also avoid triggering a WARNING by not passing in the name of the bundle as the first arg to bundlebuilder.
-rw-r--r--pippy_app.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pippy_app.py b/pippy_app.py
index ce33a51..694b068 100644
--- a/pippy_app.py
+++ b/pippy_app.py
@@ -749,11 +749,11 @@ def main():
oldargv = sys.argv
os.chdir(app_temp)
sys.argv = [ 'setup.py', 'dist_xo' ]
- bundlebuilder.start(pytitle)
+ bundlebuilder.start()
sys.argv = oldargv
os.chdir(olddir)
# move to destination directory.
- copy2('%s/%s-%d.xo' % (app_temp, pytitle, bundle_info['version']),
+ copy2('%s/dist/%s-%d.xo' % (app_temp, pytitle, bundle_info['version']),
'%s/%s-%d.xo' % (options.dir, pytitle, bundle_info['version']))
finally:
rmtree(app_temp, ignore_errors=True)