changed: #doCVSCheckout
authorJan Vrany <jan.vrany@fit.cvut.cz>
Wed, 04 Apr 2012 18:44:59 +0200
changeset 1093 7422eb4f02c4
parent 1092 21d5467c88ef
child 1094 52a4ad83eaa4
changed: #doCVSCheckout
SVN__SyncWithCVSTask.st
--- a/SVN__SyncWithCVSTask.st	Wed Apr 04 18:44:37 2012 +0200
+++ b/SVN__SyncWithCVSTask.st	Wed Apr 04 18:44:59 2012 +0200
@@ -186,7 +186,7 @@
 
     | cvs cvswc |
     cvswc := tmpDir construct:'cvs-working-copy'.
-    cvswc exists ifFalse:[
+    "cvswc exists"false ifFalse:[
         cvs := OSProcess new
                 executable: '/usr/bin/cvs';
                 arguments: {
@@ -197,7 +197,8 @@
                     };
                 stdout: transcript;
                 stderr: transcript;
-                workdir: (tmpDir construct:'cvs-working-copy').
+                workdir: (tmpDir construct:'cvs-working-copy');
+                yourself.
         cvs execute.
         self 
             assert:  cvs exitValue = 0
@@ -206,7 +207,7 @@
 
     "Created: / 02-06-2009 / 17:19:42 / Jan Vrany <vranyj1@fel.cvut.cz>"
     "Modified: / 19-08-2009 / 11:47:59 / Jan Vrany <vranyj1@fel.cvut.cz>"
-    "Modified: / 21-03-2012 / 14:27:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 04-04-2012 / 16:24:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 doCopyFiles