Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
63ff6c84
Commit
63ff6c84
authored
Feb 17, 2014
by
Matthew Phipps
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pip module wasn't adding -e when using VCS
parent
bb465ef5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
library/packaging/pip
+4
-2
No files found.
library/packaging/pip
View file @
63ff6c84
...
...
@@ -287,8 +287,6 @@ def main():
if
env
:
path_prefix
=
"/"
.
join
(
pip
.
split
(
'/'
)[:
-
1
])
if
extra_args
:
cmd
+=
'
%
s'
%
extra_args
if
name
:
# pip can accept a path to a local project or a VCS url beginning
# with svn+, git+, hg+, or bz+ and these sources usually do not qualify
...
...
@@ -326,6 +324,10 @@ def main():
if
not
is_package
and
state
!=
'absent'
and
use_mirrors
and
'--use-mirrors'
in
cmd_opts
:
cmd
+=
' --use-mirrors'
if
extra_args
:
cmd
+=
'
%
s'
%
extra_args
if
name
:
cmd
+=
'
%
s'
%
_get_full_name
(
name
,
version
)
elif
requirements
:
cmd
+=
' -r
%
s'
%
requirements
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment