mercurial/HGCommitTask.st
changeset 158 591092ed5641
parent 156 725d8bc65e48
child 210 54a73fa50d40
--- a/mercurial/HGCommitTask.st	Mon Dec 10 11:42:50 2012 +0000
+++ b/mercurial/HGCommitTask.st	Mon Dec 10 10:55:28 2012 -0800
@@ -66,7 +66,7 @@
         wc commit: msg files: containers author: self author.
         wc repository push: nil force: true.
         remote notNil ifTrue:[
-            self package repository push: remote force: false.
+            self package repository push: remote name force: false.
         ].
         "/Also, mark original (package) working copy as given branch
         "/so subsequent 'hg update' will update from that branch
@@ -76,8 +76,8 @@
     ].
 
     "Created: / 15-11-2012 / 16:52:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 07-12-2012 / 16:13:16 / jv"
     "Modified: / 10-12-2012 / 11:19:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 10-12-2012 / 10:53:14 / jv"
 !
 
 doPrepareWorkingCopy2