Mercurial > public > mercurial-scm > hg
diff mercurial/commands.py @ 1207:a7b8812973d9
Rewrite copytree as copyfiles
This inverts the logic of copytree to allow copying single files at
the top level.
author | mpm@selenic.com |
---|---|
date | Wed, 07 Sep 2005 19:21:38 -0700 |
parents | 6512d352d6c1 |
children | 4644df4944ff |
line wrap: on
line diff
--- a/mercurial/commands.py Wed Sep 07 19:16:36 2005 -0700 +++ b/mercurial/commands.py Wed Sep 07 19:21:38 2005 -0700 @@ -607,7 +607,7 @@ # we use a lock here because because we're not nicely ordered l = lock.lock(os.path.join(source, ".hg", "lock")) - util.copytree(os.path.join(source, ".hg"), os.path.join(dest, ".hg"), + util.copyfiles(os.path.join(source, ".hg"), os.path.join(dest, ".hg"), copyfile) for fn in "dirstate", "lock", "hgrc", "localtags":