Changeset 1339 in tailor


Ignore:
Timestamp:
03/17/07 23:20:01 (6 years ago)
Author:
Dustin Sallings <dustin@…>
Hash name:
20070317222001-c4430-489bfb84c30e396b0b9d8e7703b5ab24805655f3
Message:

force the sync when bootstrapping

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/repository/p4/source.py

    r1338 r1339  
    103103 
    104104    def _checkoutUpstreamRevision(self, revision): 
     105        force=False 
    105106        if revision == 'INITIAL': 
    106107            revision = self.__getNativeChanges(-1)[0]['change'] 
     108            force=True 
    107109        p4=self.__getP4() 
    108110        desc=p4.describe(revision, shortForm=True) 
    109111 
    110         p4.sync('@' + str(revision)) 
     112        p4.sync('@' + str(revision), force=force) 
    111113 
    112114        ts=self.__parseDate(desc['date']) 
Note: See TracChangeset for help on using the changeset viewer.