##// END OF EJS Templates
localrepo: change aftertrans to be independant of the store path
localrepo: change aftertrans to be independant of the store path

File last commit:

r2529:94198553 default
r3790:f183c185 default
Show More
test-hup
16 lines | 146 B | text/plain | TextLexer
#!/bin/sh
hg init
mkfifo p
hg serve --stdio < p &
P=$!
(echo lock; echo addchangegroup; sleep 5) > p &
Q=$!
sleep 3
kill -HUP $P
wait
ls .hg