sapling/tests/test-empty
Benoit Boissinot 5562ddda56 fix regression on empty repo cloning introduced by d87e43563bf4
The store directory wasn't copied. Unconditionally create the directories
instead.
2008-08-29 16:50:11 +02:00

18 lines
142 B
Bash
Executable File

#!/bin/sh
hg init a
cd a
hg log
hg grep wah
hg manifest
hg verify
ls .hg
ls .hg/store
cd ..
hg clone a b
cd b
hg verify
ls .hg
ls .hg/store