##// END OF EJS Templates
change default strftime format for better portability...
change default strftime format for better portability On some systems, such as Solaris and HP-UX, "%c" format give output without the leading zero on the single-digit month-day.

File last commit:

r814:0902ffec merge default
r1953:379ab45b 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