mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Fix: quote src for safer handling
This commit is contained in:
+1
-1
@@ -1350,7 +1350,7 @@ def pip_install(
|
||||
|
||||
# Don't specify a source directory when using --system.
|
||||
if not allow_global and ('PIP_SRC' not in os.environ):
|
||||
src = '--src {0}'.format(project.virtualenv_src_location)
|
||||
src = '--src "{0}"'.format(project.virtualenv_src_location)
|
||||
else:
|
||||
src = ''
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user