tests/test-mq-qnew-twice
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Fri, 01 Aug 2008 12:33:10 +0200
changeset 6853 2ff0829bdae5
parent 2990 61fcd9fac434
permissions -rwxr-xr-x
hgweb: do not use unassigned variables in exception handling

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