view tests/test-mq-qnew-twice @ 6359:25e74cd3f023

test-notify: make it pass on Mac OS X 10.5
author Florent Guillaume <fg@nuxeo.com>
date Sun, 23 Mar 2008 01:23:03 +0100
parents 61fcd9fac434
children
line wrap: on
line source

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