##// END OF EJS Templates
Merge with crew-stable
Merge with crew-stable

File last commit:

r3990:96e21337 default
r4134:9dc64c84 merge default
Show More
test-bad-extension
11 lines | 214 B | text/plain | TextLexer
/ tests / test-bad-extension
Alexis S. L. Carvalho
load extensions only after the ui object has been completely initialized...
r3014 #!/bin/sh
echo 'syntax error' > badext.py
abspath=`pwd`/badext.py
echo '[extensions]' >> $HGRCPATH
Thomas Arendsen Hein
Improved error message for extensions overriding commands (with test):...
r3990 echo "gpg =" >> $HGRCPATH
echo "hgext.gpg =" >> $HGRCPATH
Alexis S. L. Carvalho
load extensions only after the ui object has been completely initialized...
r3014 echo "badext = $abspath" >> $HGRCPATH
hg -q help help