##// END OF EJS Templates
Changed coding hint to BOM
Changed coding hint to BOM

File last commit:

r647:732ca4b5 default
r760:73540173 default
Show More
test-hup
16 lines | 149 B | text/plain | TextLexer
#!/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