From 4e7e5475eca62dd3df4fb854c63608281b4e7d43 Mon Sep 17 00:00:00 2001 From: C. Scott Ananian Date: Fri, 26 Sep 2008 06:56:57 +0000 Subject: 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. --- (limited to 'pippy_app.py') 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) -- cgit v0.9.1