mercurial/HGPackageModelRegistry.st
changeset 118 5a8b78ad48ae
parent 115 b1ed2d29054b
child 123 ee1cc926f489
--- a/mercurial/HGPackageModelRegistry.st	Sat Dec 01 00:50:48 2012 +0000
+++ b/mercurial/HGPackageModelRegistry.st	Sat Dec 01 01:00:13 2012 +0000
@@ -41,7 +41,7 @@
     toFlush do:[:package|
         | wcdir |
         repositories removeKey: package repository path ifAbsent:[nil].
-        wcdir := package workingCopy path.
+        wcdir := package temporaryWorkingCopy path.
         [ wcdir recursiveRemove ] on: Error do:[
             OperatingSystem isMSWINDOWSlike ifTrue:[
                 Delay waitForSeconds: 1.
@@ -52,8 +52,8 @@
     ].
 
     "Created: / 16-11-2012 / 19:40:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 22-11-2012 / 11:38:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 22-11-2012 / 16:03:07 / jv"
+    "Modified: / 01-12-2012 / 00:32:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !HGPackageModelRegistry class methodsFor:'documentation'!