Changeset 186 in tailor


Ignore:
Timestamp:
12/27/04 21:12:55 (8 years ago)
Author:
lele@…
Hash name:
20041227201255-97f81-93531a2980992052102522b7d0880d4b904ecc62
Message:

Actually use module and subdir parameters in the checkout

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/svn.py

    r168 r186  
    112112     
    113113class SvnCheckout(SystemCommand): 
    114     COMMAND = "svn co --revision %(revision)s %(repository)s %(wc)s" 
     114    COMMAND = "svn co --revision %(revision)s %(repository)s/%(module)s %(wc)s" 
    115115 
    116116def changesets_from_svnlog(log, url): 
     
    279279        if not exists(wdir): 
    280280            svnco = SvnCheckout(working_dir=basedir) 
    281             svnco(output=True, repository=repository, 
    282                   wc=module, revision=revision) 
     281            svnco(output=True, repository=repository, module=module, 
     282                  wc=subdir, revision=revision) 
    283283            if svnco.exit_status: 
    284284                raise TargetInitializationFailure( 
Note: See TracChangeset for help on using the changeset viewer.