mirror of https://github.com/snare/voltron.git
Remove pip user mode when installing in a venv
`--user` will fail inside a virtualenv with the following message: ``` + /Users/xxx/venv/voltron/bin/python -m pip install -U --user . Can not perform a '--user' install. User site-packages are not visible in this virtualenv. ``` Afaict this doesn't break anything else.
This commit is contained in:
parent
cd11d2f93b
commit
55ce78bfb1
|
@ -59,6 +59,7 @@ while getopts ":dsSb:v:" opt; do
|
|||
;;
|
||||
v)
|
||||
VENV="${OPTARG}"
|
||||
USER_MODE=''
|
||||
SUDO=''
|
||||
;;
|
||||
S)
|
||||
|
|
Loading…
Reference in New Issue