~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/win32/build_release.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-01-12 18:57:37 UTC
  • mfrom: (3923.2.3 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090112185737-d6kwagahecadwfce
(jam) Update build-release for the 0.11rc1 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
# When preparing a new release, make sure to set all of these to the latest
5
5
# values.
6
6
VERSIONS = {
7
 
    'bzr': '1.10',
8
 
    'qbzr': '0.9.5',
9
 
    'bzrtools': '1.10.0',
 
7
    'bzr': '1.11',
 
8
    'qbzr': '0.9.6',
 
9
    'bzrtools': '1.11.0',
10
10
    'bzr-svn': '0.4.16',
11
11
}
12
12
 
83
83
    bzr_dir = get_bzr_dir()
84
84
    if not os.path.isdir(bzr_dir):
85
85
        bzr_version = VERSIONS['bzr']
86
 
        bzr_url = 'http://bazaar-vcs.org/bzr/bzr' + bzr_version
 
86
        bzr_url = 'http://bazaar-vcs.org/bzr/bzr.' + bzr_version
87
87
        print "Getting bzr release %s from %s" % (bzr_version, bzr_url)
88
88
        call_or_fail([bzr(), 'co', bzr_url])
89
89
    else: