##// END OF EJS Templates
Remove usage of ${par:-word}, which and mktemp. Quote filenames.
Remove usage of ${par:-word}, which and mktemp. Quote filenames.

File last commit:

r647:732ca4b5 default
r795:cd0ad12d 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