#BUGFIX by exept
authorClaus Gittinger <cg@exept.de>
Wed, 26 Feb 2020 01:22:17 +0100
changeset 4560 4d5d025b2aab
parent 4559 e97f85bac732
child 4561 eace75531554
#BUGFIX by exept class: CVSSourceCodeManager class changed: #executeCVSCommand:module:inDirectory:log:pipe:orElseOutputTo:errorTo: nil-nonNil s. true-false confusion
CVSSourceCodeManager.st
--- a/CVSSourceCodeManager.st	Tue Feb 25 12:24:48 2020 +0100
+++ b/CVSSourceCodeManager.st	Wed Feb 26 01:22:17 2020 +0100
@@ -1142,7 +1142,7 @@
 
                 [
                     done := true.
-                    (osProcess waitUntilFinishedWithTimeout:self cvsCommandTimeout) isNil ifTrue:[
+                    (osProcess waitUntilFinishedWithTimeout:self cvsCommandTimeout) ifFalse:[
                         (Dialog confirm:(c'CVS command timeout (%1) for:\n\n%2\n\nHint: you can change this timeout in the launcher''s settings dialog.\nProceed?'
                                                 bindWith:self cvsCommandTimeout with:command)) 
                         ifTrue:[
@@ -1153,7 +1153,7 @@
                             ok := false.
                             errorString := 'CVS command timeout'.
                         ].
-                    ] ifFalse:[
+                    ] ifTrue:[
                         ok := rslt := osProcess finishedWithSuccess.
                         ok ifFalse:[
                             errorString := errOut contents.