tests/test-mq-qnew-twice
author Thomas Arendsen Hein <thomas@intevation.de>
Tue, 19 Jun 2007 08:17:55 +0200
changeset 4634 73bf2b586f3f
parent 2990 61fcd9fac434
permissions -rwxr-xr-x
Use printenv.py for pre/post-command-hooks (fixes tests on Solaris, too)

#!/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