I just noticed this today on WinXP / THg-1.1 hg-1.6, WinXP SP2

hg help {revsets,hgweb,glossary}

display these errors:

> hg help resets
abort: No such file or directory: c:\Program Files\TortoigeHg\.\help\resets.txt

> hg help hgweb
abort: No such file or directory: c:\Program Files\TortoigeHg\.\help\.txt

> hg help glossary
abort: No such file or directory: c:\Program Files\TortoigeHg\.\help\.txt

I tried them hg-1.6 on my home linux box and they all worked, so I'm
assuming it's a build issue and not something with mercurial itself.

For anyone who cares, when I discovered one that failed, I tested them
all using a batch file:

chk.bat - Requires 'gawk' in the current path

@echo off
hg help | gawk '/^^ \w+/{print $1;}' > %TEMP%\hgcmds
for /f %%a in ('type %TEMP%\hgcmds') do (
  hg help %%a > nul:
  if not errorlevel 0 echo %%a
)
del %TEMP%\hgcmds

I have _not_ installed the standalone Mercurial build to try it - I
did not have it handy at work.

- Kevin

------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
Tortoisehg-develop mailing list
Tortoisehg-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tortoisehg-develop

Reply via email to