I updated to 2.10.2 and I ever used a "user command" to interact with Bazaar. This worked quite well, but now I get an error message that some paths could not be found. I think this is because I use the command
"Path_To_EXE" ?a"
The ?a" gets to C:/Users/JohnDoe/... and I would need C:\Users\JohnDoe... (backslash instead of slash). I think in earlier versions of TeXstudio this worked well.
Can somebody help me please?
Thanks,
Peter
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The difference is the " (quotation mark) in the second line and I think this causes the problem I get with the external program which I try to execute.
I hope I explained, so it is reproducible.
Thanks,
Peter
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The \" at the end was erronously interpreted as a literal quote. Will be fixed in the next release. If your path does not contain spaces, you can switch to "D:/Users/JohnDoe/test.bat" ?a) as a workaround, which leaves out the quoting around the argument.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I updated to 2.10.2 and I ever used a "user command" to interact with Bazaar. This worked quite well, but now I get an error message that some paths could not be found. I think this is because I use the command
The ?a" gets to C:/Users/JohnDoe/... and I would need C:\Users\JohnDoe... (backslash instead of slash). I think in earlier versions of TeXstudio this worked well.
Can somebody help me please?
Thanks,
Peter
Works here. What's exactly the error message you get? Do you have a multi-file document? Please try to work out a minimal example.
Hi Tim,
thanks for your quick answer.
I tested a bit more and I think I found the problem:
I've got a user command containing:
The 'test.bat' file contains:
When executing this command one any file (e.g.: 'D:\Users\JohnDoe\test\test.tex') with TeXstudio 2.10.2 I get:
With TeXstudio 2.9.4 I get:
The difference is the " (quotation mark) in the second line and I think this causes the problem I get with the external program which I try to execute.
I hope I explained, so it is reproducible.
Thanks,
Peter
fixed: hg 5578 (6400c5c2bb1b)
The
\"at the end was erronously interpreted as a literal quote. Will be fixed in the next release. If your path does not contain spaces, you can switch to"D:/Users/JohnDoe/test.bat" ?a)as a workaround, which leaves out the quoting around the argument.Thank you very much.