diff mercurial/util.py @ 13795:43b5fe18ea6c

set NOT_CONTENT_INDEXED on .hg dir (issue2694) when running on Windows
author Adrian Buehlmann <adrian@cadifra.com>
date Mon, 28 Mar 2011 15:54:22 +0200
parents bc7b5d1c1999
children e574207e3bcd
line wrap: on
line diff
--- a/mercurial/util.py	Tue Mar 29 16:25:48 2011 +0200
+++ b/mercurial/util.py	Mon Mar 28 15:54:22 2011 +0200
@@ -438,6 +438,9 @@
 
     return check
 
+def makedir(path, notindexed):
+    os.mkdir(path)
+
 def unlinkpath(f):
     """unlink and remove the directory if it is empty"""
     os.unlink(f)