##// END OF EJS Templates
Fix Debian bug #494889 (fetching from static-http://... broken)...
Fix Debian bug #494889 (fetching from static-http://... broken) Changeset 6605a03cbf87 which fixed issue965 (hg clone static-http does not work for empty repos) broke cloning of repos with old layout (without store) via static-http. This fix makes cloning from old-style repositories possible again, but will not allow cloning of empty old-style repositories as this can not be detected reliably.

File last commit:

r6204:f8a86ea7 default
r7178:98b6c3dd 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'))"