Ticket Change Details
Not logged in

Changes to ticket 8d073be880

By anonymous on 2009-09-11 01:32:34. See also: artifact content, and ticket history

    1. Appended to comment:

      anonymous added on 2009-09-11 01:32:34:
      drh - i noticed in checkin aeaee1f38512181e that you quoted the entire command for windows, including parameters. i don't think that is what you need. for example, your patch would do this for gdiff-command:

      "C:\Program Files\Beyond Compare 3\BComp.exe file1.cpp file2.cpp"
      the above would still result in the OS thinking that C:\Program was the command you were executing and Files\Beyond etc. is a space delimited parameter list. for commands with spaces in them, you need to quote the command and then quote any parameters with spaces in them. to be safe, you can just quote all parameters separately, so what you want is one of these:
      "C:\Program Files\Beyond Compare 3\BComp.exe" file1.cpp file2.cpp
      "C:\Program Files\Beyond Compare 3\BComp.exe" "file1.cpp" "file2.cpp"