Changeset 43

Show
Ignore:
Timestamp:
Mon May 8 21:37:44 2006
Author:
jpellerin
Message:

r940@Jason-Pellerins-Computer: jhp | 2006-05-08 21:34:39 -0500
Fixes to mkrelease to use stable branch for releases if available

Files:

Legend:

Unmodified
Added
Removed
Modified
  • branches/0.9-stable/scripts/mkrelease.py

    r40 r43  
    43 43 if not os.path.isdir(branch):  
    44 44     runcmd('svn copy trunk %s' % branch)  
    45    
      45     base = 'trunk'  
      46 else:  
      47     base = branch  
      48     os.chdir(branch)  
      49     print "cd %s" % branch  
      50     runcmd('svn up')  
      51     os.chdir(svnroot)  
      52     print "cd %s"% svnroot  
      53      
    46 54 # make tag  
    47   runcmd('svn copy trunk %s' % tag)  
      55 runcmd('svn copy %s %s' % (base, tag))  
    47 55  
    48 56 if os.path.exists(os.path.join(branch, 'setup.cfg')):