comparison tests/test-install @ 9734:36c388a1aa51

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.
author Martin Geisler <mg@lazybytes.net>
date Sat, 07 Nov 2009 01:46:27 +0100
parents 46280c004f22
children
comparison
equal deleted inserted replaced
9733:f16ec85f125c 9734:36c388a1aa51
1 #!/bin/sh 1 #!/bin/sh
2 2
3 echo '% hg debuginstall'
3 hg debuginstall 4 hg debuginstall
5
6 echo '% hg debuginstall with no username'
7 HGUSER= hg debuginstall
8
9 # Happy End
10 true