pip
This commit is contained in:
parent
014d10bf98
commit
1c5b7d138d
1 changed files with 7 additions and 6 deletions
|
@ -829,12 +829,13 @@ spcd_python_ln() {
|
|||
|
||||
spcd_python_pip() {
|
||||
if [ -n "${1}" ]; then
|
||||
spcd_pp__name="$(basename "${1}")"
|
||||
spcd_pp__path="$(spcd_git_clone "${1}")"
|
||||
spcd_pp__path="${spcd_pp__path}/${spcd_pp__name}"
|
||||
spcd_pp__target="${SPCD_PYTHON_VENV_PACKAGES}"
|
||||
cp --recursive "${spcd_pp__path}" "${spcd_pp__target}"
|
||||
echo "${spcd_pp__target}/${spcd_pp__name}"
|
||||
local name path target
|
||||
name="$(basename "${1}")"
|
||||
path="$(spcd_git_clone "${1}")"
|
||||
path="${path}/${name}"
|
||||
target="${SPCD_PYTHON_VENV_PACKAGES}"
|
||||
cp --recursive "${path}" "${target}"
|
||||
echo "${target}/${name}"
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue