rackerlabs / lambda-uploader

Helps package and upload Python lambda functions to AWS
Apache License 2.0
271 stars 56 forks source link

allow for copying symlinks when copying tree to create zip #134

Closed nicholasjstock closed 7 years ago

nicholasjstock commented 7 years ago

To reproduce the bug create a symlink in the root of your project and you should see shutil.copy(path, pkg_path)(line 54 pre this commit) failing with a "no such file or directory" error.

jarosser06 commented 7 years ago

Looks good, can you provide a test for this functionality as well.

nicholasjstock commented 7 years ago

done.

jarosser06 commented 7 years ago

Thanks