Commit f102b249 authored by jim's avatar jim

When installing zip-safe eggs from local directories, the eggs were

moved, rather than copied, removing them from the source directory.


git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@70726 62d5b8a3-27da-0310-9561-8e5933582275
parent 45620e93
......@@ -247,7 +247,7 @@ def _get_dist(requirement, env, ws,
),
)
else:
shutil.move(
shutil.copyfile(
dist.location,
os.path.join(dest, os.path.basename(dist.location)
),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment