##// END OF EJS Templates
subrepo: change default path in hgrc of subrepo after cloning...
subrepo: change default path in hgrc of subrepo after cloning Previous behavior was to put in the cloned subrepos the path found in the original main repo. However it isn't valid for relative path and it seems more logical to reference instead the subrepos working copy path of the original main repo.

File last commit:

r6204:f8a86ea7 default
r10378:e1401c74 default
Show More
test-bad-extension
13 lines | 377 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
Alexis S. L. Carvalho
test-bad-extension: avoid printing the file name...
r4139 echo 'raise Exception("bit bucket overflow")' > badext.py
Alexis S. L. Carvalho
load extensions only after the ui object has been completely initialized...
r3014 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
Jesse Glick
When failing to load an extension, show where Hg tried to load it from.
r6204 echo "badext2 =" >> $HGRCPATH
Alexis S. L. Carvalho
load extensions only after the ui object has been completely initialized...
r3014
Jesse Glick
When failing to load an extension, show where Hg tried to load it from.
r6204 hg -q help help 2>&1 | python -c \
"import sys; sys.stdout.write(sys.stdin.read().replace('$abspath', '.../badext.py'))"