comparison tests/test-empty @ 6944:7e5f3480c45b

fix regression on empty repo cloning introduced by 0642d9d7ec80 The store directory wasn't copied. Unconditionally create the directories instead.
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Fri, 29 Aug 2008 16:50:11 +0200
parents 2b77ea66fe70
children
comparison
equal deleted inserted replaced
6943:2ca70663ded3 6944:7e5f3480c45b
1 #!/bin/sh 1 #!/bin/sh
2 2
3 hg init 3 hg init a
4 cd a
4 hg log 5 hg log
5 hg grep wah 6 hg grep wah
6 hg manifest 7 hg manifest
7 hg verify 8 hg verify
9 ls .hg
10 ls .hg/store
11
12 cd ..
13 hg clone a b
14 cd b
15 hg verify
16 ls .hg
17 ls .hg/store