cd_install_python_modules
This commit is contained in:
parent
5fdf986cde
commit
68c4444367
1 changed files with 17 additions and 14 deletions
31
cd.sh
31
cd.sh
|
@ -544,35 +544,38 @@ cd_clean_packages_cache () {
|
||||||
}
|
}
|
||||||
|
|
||||||
cd_install_python_modules () {
|
cd_install_python_modules () {
|
||||||
local path
|
|
||||||
local repository
|
|
||||||
local root
|
|
||||||
local url
|
|
||||||
cd_step "Install Python modules"
|
cd_step "Install Python modules"
|
||||||
root="$(mktemp --directory)" || exit
|
cd_install_python_modules__root="$(mktemp --directory)" || exit
|
||||||
echo "→ ${root}"
|
echo "→ ${cd_install_python_modules__root}"
|
||||||
for repository in "${CD_GIT_CHILD}" "${CD_GIT_PARENT}" ; do
|
for cd_install_python_modules__repository \
|
||||||
|
in "${CD_GIT_CHILD}" "${CD_GIT_PARENT}" ; do
|
||||||
cd_split
|
cd_split
|
||||||
url="${CD_PROJECTS_URL}/${repository}"
|
cd_install_python_modules__url="\
|
||||||
|
${CD_PROJECTS_URL}/${cd_install_python_modules__repository}"
|
||||||
echo "\
|
echo "\
|
||||||
${url}
|
${cd_install_python_modules__url}
|
||||||
↓"
|
↓"
|
||||||
git clone \
|
git clone \
|
||||||
"${url}" "${root}/${repository}" \
|
"${cd_install_python_modules__url}" \
|
||||||
|
"${cd_install_python_modules__root}\
|
||||||
|
/${cd_install_python_modules__repository}" \
|
||||||
|| exit
|
|| exit
|
||||||
path="${root}/${repository}/${repository}"
|
cd_install_python_modules__path="\
|
||||||
|
${cd_install_python_modules__root}\
|
||||||
|
/${cd_install_python_modules__repository}\
|
||||||
|
/${cd_install_python_modules__repository}"
|
||||||
echo "\
|
echo "\
|
||||||
${path}
|
${cd_install_python_modules__path}
|
||||||
↓
|
↓
|
||||||
${CD_PYTHON_PACKAGES}"
|
${CD_PYTHON_PACKAGES}"
|
||||||
cp --recursive \
|
cp --recursive \
|
||||||
"${path}" "${CD_PYTHON_PACKAGES}" \
|
"${cd_install_python_modules__path}" "${CD_PYTHON_PACKAGES}" \
|
||||||
|| exit
|
|| exit
|
||||||
done
|
done
|
||||||
cd_split
|
cd_split
|
||||||
cd_ls "${CD_PYTHON_PACKAGES}"
|
cd_ls "${CD_PYTHON_PACKAGES}"
|
||||||
cd_split
|
cd_split
|
||||||
cd_rm "${root}"
|
cd_rm "${cd_install_python_modules__root}"
|
||||||
}
|
}
|
||||||
|
|
||||||
cd_write_python_module () {
|
cd_write_python_module () {
|
||||||
|
|
Loading…
Reference in a new issue