Skip to content

Commit 54f36f3

Browse files
author
Dharwin Perez
committed
remove -e
1 parent 6a711fb commit 54f36f3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

aws_lambda/aws_lambda.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,8 @@ def pip_install_to_target(path, local_package=None):
206206
if r.startswith('Python=='):
207207
# For some reason Python is coming up in pip freeze.
208208
continue
209+
elif r.startswith('-e '):
210+
r = r.replace('-e ','')
209211
pip.main(['install', r, '-t', path, '--ignore-installed'])
210212

211213
if local_package is not None:

0 commit comments

Comments
 (0)