Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions deploylambda/deploylambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,7 @@ def create_venv_zip(function_name, path, extra_path=''):
dirs.remove('.git')

for file in files:
if root.startswith('./boto'): #for free on aws
continue
if root.startswith('./psycopg2') and 'aws' not in subpath: #psycopg2 from aws folder
if root.startswith('./psycopg2') and 'aws' not in subpath: #psycopg2 from aws folder
continue
if file == '.DS_Store':
continue
Expand Down