tests/test-mq-qnew-twice
author Thomas Arendsen Hein <thomas@intevation.de>
Tue, 31 Oct 2006 10:50:16 +0100
changeset 3590 231e61de692c
parent 2976 61fcd9fac434
permissions -rwxr-xr-x
Check for at least having a final release of python 2.3.0 in setup.py Mercurial uses features that are not in 2.3a1.

#!/bin/sh

echo "[extensions]" >> $HGRCPATH
echo "mq=" >> $HGRCPATH

hg init a
cd a
hg qnew first.patch
hg qnew first.patch

touch ../first.patch
hg qimport ../first.patch

exit 0