##// END OF EJS Templates
patch: return list of modified files even when an exception is raised...
patch: return list of modified files even when an exception is raised The file list is passed in as an argument and updated in place. This fixes issue399.

File last commit:

r3428:7012c889 default
r3465:2d35a8d2 default
Show More
test-empty-dir
16 lines | 274 B | text/plain | TextLexer
mpm@selenic.com
Remove empty directories on update...
r578 #!/bin/sh
hg init
echo 123 > a
hg add a
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m "first" -d "1000000 0" a
mpm@selenic.com
Remove empty directories on update...
r578 mkdir sub
echo 321 > sub/b
hg add sub/b
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m "second" -d "1000000 0" sub/b
mpm@selenic.com
Remove empty directories on update...
r578 cat sub/b
hg co 0
Peter van Dijk
changes by John Levon to standardize some erroroutput
r1926 cat sub/b 2>/dev/null || echo "sub/b not present"
Alexis S. L. Carvalho
portability fixes for some tests...
r3428 test -e sub || echo "sub not present"
mpm@selenic.com
Remove empty directories on update...
r578
true