sapling/tests/test-install
Martin Geisler c3718b9d5b commands: call ui.username carefully in debuginstall
After 54b67f7bd5df, 'hg debuginstall' would abort halfway through if
no username was set. We now catch and display the exception instead.
2009-11-07 01:46:27 +01:00

11 lines
137 B
Bash
Executable File

#!/bin/sh
echo '% hg debuginstall'
hg debuginstall
echo '% hg debuginstall with no username'
HGUSER= hg debuginstall
# Happy End
true