tests/test-install
author Martin Geisler <mg@lazybytes.net>
Sat, 07 Nov 2009 01:46:27 +0100
changeset 9734 36c388a1aa51
parent 4365 46280c004f22
permissions -rwxr-xr-x
commands: call ui.username carefully in debuginstall After c63c336ee2f7, 'hg debuginstall' would abort halfway through if no username was set. We now catch and display the exception instead.

#!/bin/sh

echo '% hg debuginstall'
hg debuginstall

echo '% hg debuginstall with no username'
HGUSER= hg debuginstall

# Happy End
true