Ignore:
Timestamp:
Dec 25, 2008, 1:41:49 AM (15 years ago)
Author:
broder
Message:

Use a full repo path so we can expand to include trunk/scripts later.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/scripts/git-migration/git-migrate

    r1894 r1895  
    3030
    3131def clonePackage(base, pkg):
     32    path = '%s/%s' % (base, pkg)
     33    pkg = os.path.basename(pkg)
     34   
    3235    if not os.path.isdir('%s.git' % pkg):
    3336        if os.path.isdir(pkg):
     
    4043                               '-q',
    4144                               '--no-metadata',
    42                                '%s/packages/%s' % (base, pkg)],
     45                               '%s' % path],
    4346                              stdout=subprocess.PIPE)
    4447       
Note: See TracChangeset for help on using the changeset viewer.