tests/test-hup
author Thomas Arendsen Hein <thomas@intevation.de>
Thu, 09 Feb 2006 07:01:23 +0100
changeset 1706 20b621154e17
parent 814 0902ffece4b4
child 2088 f16435b45780
permissions -rwxr-xr-x
Run commit message editor in the repo root (like hooks). This makes the hgeditor script work with hg commit -R path/to/repo

#!/bin/sh

hg init
mkfifo p

hg serve --stdio < p &
P=$!
(echo lock; echo addchangegroup; sleep 5) > p &
Q=$!
sleep 1
kill -HUP $P
sleep 1
ls .hg