Comments
Patch
@@ -210,7 +210,7 @@
continue
dstbase = os.path.dirname(f)
if dstbase and not dstvfs.exists(dstbase):
- dstvfs.mkdir(dstbase)
+ dstvfs.mkdir(dstbase, hidden=f.endswith('store'))
if srcvfs.exists(f):
if f.endswith('data'):
# lock to avoid premature writing to the target
@@ -200,7 +200,7 @@
self.vfs.makedir(notindexed=True)
requirements = self._baserequirements(create)
if self.ui.configbool('format', 'usestore', True):
- self.vfs.mkdir("store")
+ self.vfs.mkdir("store", hidden=True)
requirements.append("store")
if self.ui.configbool('format', 'usefncache', True):
requirements.append("fncache")