view tests/test-bad-extension @ 10032:6950dd804e69

i18n-el: remove some Danish strings The original el.po file was copied from da.po and I missed a few Danish strings in the version I submitted to crew.
author Giorgos Keramidas <keramida@ceid.upatras.gr>
date Wed, 02 Dec 2009 18:49:10 +0200
parents f8a86ea7521b
children
line wrap: on
line source

#!/bin/sh

echo 'raise Exception("bit bucket overflow")' > badext.py
abspath=`pwd`/badext.py

echo '[extensions]' >> $HGRCPATH
echo "gpg =" >> $HGRCPATH
echo "hgext.gpg =" >> $HGRCPATH
echo "badext = $abspath" >> $HGRCPATH
echo "badext2 =" >> $HGRCPATH

hg -q help help 2>&1 | python -c \
  "import sys; sys.stdout.write(sys.stdin.read().replace('$abspath', '.../badext.py'))"