On Sat, Apr 25, 2009 at 03:08, Yue Wang wrote:
On Sat, Apr 25, 2009 at 4:29 AM, Mojca Miklavec wrote:
Where is that cache located? (Are you talking about windows?) Maybe we could prevent deleting the font cache. This might solve your problem.
I think it is in the C:\context\tex\texmf-mswin\fonts\cache\
Oh, right! It seemed weird to me when you were talking about font cache being deleted since I thouht you were using FreeBSD. What you can do temporary is to add --keep option to first-setup.bat, but I would like to fix the issue anyway. Hans, can you please apply the following fix: local normalflags = states.get("rsync.flags.normal") local deleteflags = "" if (destination:find("texmf$") or destination:find("context$")) and (not environment.argument("keep")) then deleteflags = states.get("rsync.flags.delete") end command = format("%s %s %s %s'%s' '%s'", bin, normalflags, deleteflags, url, archives, destination) logs.report("mtx update", format("running command: %s",command)) Mojca