~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/win32/build_release.py

  • Committer: Andrew Bennetts
  • Date: 2009-08-07 04:17:51 UTC
  • mto: This revision was merged to the branch mainline in revision 4608.
  • Revision ID: andrew.bennetts@canonical.com-20090807041751-0vhb0y0g7k49hr45
Review comments from John.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
    'bzr': '1.17',
8
8
    'qbzr': '0.12',
9
9
    'bzrtools': '1.17.0',
10
 
    'bzr-svn': '0.6.3',
11
 
    'bzr-rewrite': '0.5.2',
 
10
    'bzr-svn': '0.6.3-win32-1',
 
11
    'bzr-rewrite': '0.5.1',
12
12
    'subvertpy': '0.6.8',
13
13
}
14
14
 
85
85
    bzr_dir = get_bzr_dir()
86
86
    if not os.path.isdir(bzr_dir):
87
87
        bzr_version = VERSIONS['bzr']
88
 
        bzr_url = 'lp:bzr/' + bzr_version
 
88
        bzr_url = 'http://bazaar-vcs.org/bzr/bzr.' + bzr_version
89
89
        print "Getting bzr release %s from %s" % (bzr_version, bzr_url)
90
 
        call_or_fail([bzr(), 'co', bzr_url, bzr_dir])
 
90
        call_or_fail([bzr(), 'co', bzr_url])
91
91
    else:
92
92
        print "Ensuring %s is up-to-date" % (bzr_dir,)
93
93
        call_or_fail([bzr(), 'update', bzr_dir])