Mercurial > hg
changeset 6515:f65ac37f0a15
test-dumprevlog: fix extra path separator under MacOSX
The "find .hg/store/ -name '*.i'" command returned paths with extra separators
like '.hg/store//00changelog.i'.
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Fri, 11 Apr 2008 11:21:55 +0200 |
parents | 3d73b870b3ae |
children | 7a6243bf209d |
files | tests/test-dumprevlog |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-dumprevlog Fri Apr 11 08:35:37 2008 +0200 +++ b/tests/test-dumprevlog Fri Apr 11 11:21:55 2008 +0200 @@ -23,7 +23,7 @@ echo dumprevlog done # dump all revlogs to file repo.dump -find .hg/store/ -name "*.i" | xargs python $CONTRIBDIR/dumprevlog > ../repo.dump +find .hg/store -name "*.i" | xargs python $CONTRIBDIR/dumprevlog > ../repo.dump cd ..