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() {
|
spcd_python_pip() {
|
||||||
if [ -n "${1}" ]; then
|
if [ -n "${1}" ]; then
|
||||||
spcd_pp__name="$(basename "${1}")"
|
local name path target
|
||||||
spcd_pp__path="$(spcd_git_clone "${1}")"
|
name="$(basename "${1}")"
|
||||||
spcd_pp__path="${spcd_pp__path}/${spcd_pp__name}"
|
path="$(spcd_git_clone "${1}")"
|
||||||
spcd_pp__target="${SPCD_PYTHON_VENV_PACKAGES}"
|
path="${path}/${name}"
|
||||||
cp --recursive "${spcd_pp__path}" "${spcd_pp__target}"
|
target="${SPCD_PYTHON_VENV_PACKAGES}"
|
||||||
echo "${spcd_pp__target}/${spcd_pp__name}"
|
cp --recursive "${path}" "${target}"
|
||||||
|
echo "${target}/${name}"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue