Commit 2ee1e4e1 authored by Jim Fulton's avatar Jim Fulton

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

moved, rather than copied, removing them from the source directory.
parent 059971ab
......@@ -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