Georg Baum wrote: > > Baruch Even wrote: > > >>Someone should test this under Windows, I don't think it really works >>there, but I can't test. > > > CVS does probably not work there. You'll need to replace > > doVCCommand("rm -f " + fil + "; cvs update " + fil, > owner_->filePath()); > > with something like > > if (fs::exists(fil)) > unlink(fil); > doVCCommand("cvs update " + QuoteName(fil), owner_->filePath());
As I don't have a way to test it, I'd prefer someone with the ability to test will test and fix. I think that LyX runs with cygwin for windows and then rm is available. But I never run LyX in windows to really know. Baruch