Bugfix in HGCommitTask>>doCommit:files: (pass remote name as string)
authorJan Vrany <jan.vrany@fit.cvut.cz>
Mon, 10 Dec 2012 10:55:28 -0800
changeset 158 591092ed5641
parent 157 fb7a41a9cf92
child 159 c70809dc1e70
Bugfix in HGCommitTask>>doCommit:files: (pass remote name as string)
mercurial/HGCommitTask.st
--- 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