##// 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:

r1933:7544700f default
r1953:379ab45b default
Show More
test-empty-dir
16 lines | 281 B | text/plain | TextLexer
#!/bin/sh
hg init
echo 123 > a
hg add a
hg commit -m "first" -d "1000000 0" a
mkdir sub
echo 321 > sub/b
hg add sub/b
hg commit -m "second" -d "1000000 0" sub/b
cat sub/b
hg co 0
cat sub/b 2>/dev/null || echo "sub/b not present"
ls sub 2>/dev/null || echo "sub not present"
true