mercurial/HGPackageWorkingCopy.st
changeset 563 6104cd9f44f1
parent 562 e694ffae649b
child 864 c854577212b8
equal deleted inserted replaced
562:e694ffae649b 563:6104cd9f44f1
   212         ^ self
   212         ^ self
   213     ].
   213     ].
   214     tmpPath := self temporaryWorkingCopyPath.
   214     tmpPath := self temporaryWorkingCopyPath.
   215     tmpPath exists ifTrue:[
   215     tmpPath exists ifTrue:[
   216         tmpRepo := HGRepository on:tmpPath.
   216         tmpRepo := HGRepository on:tmpPath.
   217         tmpRepo pull.
   217 	tmpRepo isShared ifFalse:[
       
   218             tmpRepo pull.
       
   219         ]
   218     ] ifFalse:[
   220     ] ifFalse:[
   219         UserPreferences current hgUseSharedRepositories ifTrue:[ 
   221         UserPreferences current hgUseSharedRepositories ifTrue:[ 
   220             tmpRepo := repository shareTo:tmpPath update:false.            
   222             tmpRepo := repository shareTo:tmpPath update:false.            
   221         ] ifFalse:[ 
   223         ] ifFalse:[ 
   222             tmpRepo := repository cloneTo:tmpPath update:false.
   224             tmpRepo := repository cloneTo:tmpPath update:false.