mercurial/HGCommand.st
changeset 141 8a1c1e04391b
parent 137 379bd934f8d0
child 142 67e8c5ab8db2
equal deleted inserted replaced
140:feab684bc4dc 141:8a1c1e04391b
   425         ^ self.
   425         ^ self.
   426     ].
   426     ].
   427     (Debugging and:[OperatingSystem isUNIXlike]) ifTrue:[
   427     (Debugging and:[OperatingSystem isUNIXlike]) ifTrue:[
   428         output := output contents asString readStream
   428         output := output contents asString readStream
   429     ].
   429     ].
   430     retval := self parse: output.
   430     [ retval := self parse: output ] ensure:[ output close.].
   431     sema wait.
   431     sema wait.
   432     ^self status: status result: retval
   432     ^self status: status result: retval
   433 
   433 
   434     "
   434     "
   435         SVNv2::Command info: 'https://swing.fit.cvut.cz/svn/stx/libsvn'
   435         SVNv2::Command info: 'https://swing.fit.cvut.cz/svn/stx/libsvn'
   437 
   437 
   438     "Created: / 11-05-2011 / 07:45:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   438     "Created: / 11-05-2011 / 07:45:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   439     "Modified: / 17-12-2011 / 19:22:00 / dundee"
   439     "Modified: / 17-12-2011 / 19:22:00 / dundee"
   440     "Modified (format): / 27-12-2011 / 15:53:54 / dundee"
   440     "Modified (format): / 27-12-2011 / 15:53:54 / dundee"
   441     "Modified: / 14-11-2012 / 13:41:57 / jv"
   441     "Modified: / 14-11-2012 / 13:41:57 / jv"
   442     "Modified: / 22-11-2012 / 23:55:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   442     "Modified (format): / 06-12-2012 / 12:35:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   443 ! !
   443 ! !
   444 
   444 
   445 !HGCommand methodsFor:'private'!
   445 !HGCommand methodsFor:'private'!
   446 
   446 
   447 arguments
   447 arguments