[darcs-devel] darcs patch: some TODO tests for darcs --commands [Issue9]

2006-05-26 Thread Mark Stosberg
Wed Nov 23 19:59:29 EST 2005 Mark Stosberg [EMAIL PROTECTED] * some TODO tests for darcs --commands [Issue9] These tests expose two bugs: - cd /; darcs --commands doesn't work - darcs --commands outside of repos reports too many commands, like get. New patches: [some TODO tests

Re: [darcs-devel] darcs patch: Only test for SSH ControlMaster if there... (and 1 more)

2006-05-26 Thread Juliusz Chroboczek
* Only test for SSH ControlMaster if there are ssh paths in args. (Fixes issue171) hunk ./DarcsCommands.lhs 321 runWithPostHook os ex = [...] +let sshServers = nub $ sort [ takeWhile (/= ':') p | p - ex, is_ssh p ] +

Re: [darcs-devel] May I please combine darcs with OpenSSH? (and Eclipse and SWT too?)

2006-05-26 Thread Juliusz Chroboczek
Zooko, No problem for me. Juliusz ___ darcs-devel mailing list darcs-devel@darcs.net http://www.abridgegame.org/cgi-bin/mailman/listinfo/darcs-devel

Re: [darcs-devel] darcs patch: some TODO tests for darcs --commands [Issue9]

2006-05-26 Thread Juliusz Chroboczek
- cd /; darcs --commands doesn't work Huh? What is the problem? - darcs --commands outside of repos reports too many commands, like get. You mean changes, perhaps. Could you please resubmit it with a correct log message? Juliusz

Re: [darcs-devel] darcs patch: Only test for SSH ControlMaster if there... (and 1 more)

2006-05-26 Thread Eric Y. Kow
On Fri, May 26, 2006 at 19:39:00 +0200, Juliusz Chroboczek wrote: hasSSHControlMaster :: Bool hasSSHControlMaster = unsafePerformIO hasSSHControlMasterIO and use the latter in the low-level function that uses ssh. Since Darcs is lazy, it will be evaluated just once. Ok, Haskell has