~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/win32/bzr_postinstall.py

  • Committer: Benoît Pierre
  • Date: 2009-11-02 22:24:29 UTC
  • mto: (4634.96.1 integration-2.0)
  • mto: This revision was merged to the branch mainline in revision 4798.
  • Revision ID: benoit.pierre@gmail.com-20091102222429-xqdyo6n8odh3xbbd
Small fix for handling of short option names in shellcomplete_on_options.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2007, 2009, 2010 by Canonical Ltd
 
1
# Copyright (C) 2005 by Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
173
173
                content[ix] = s.replace('bzr.exe',
174
174
                                        '"%s"' % os.path.join(bzr_dir,
175
175
                                                              'bzr.exe'))
176
 
            elif s.find(r'C:\Program Files\Bazaar') != -1:
177
 
                content[ix] = s.replace(r'C:\Program Files\Bazaar',
178
 
                                        bzr_dir)
179
176
 
180
177
        if dry_run:
181
178
            print "*** Write file: start_bzr.bat"
344
341
                         "this library manually and put it to directory\n"
345
342
                         "where Bzr installed.\n"
346
343
                         "For detailed instructions see:\n"
347
 
                         "http://wiki.bazaar.canonical.com/BzrOnPureWindows"
 
344
                         "http://bazaar-vcs.org/BzrOnPureWindows"
348
345
                        ),
349
346
                        "Warning",
350
347
                        MB_OK | MB_ICONEXCLAMATION)