parent
44afb1bf46
commit
ed646f6c71
1 changed files with 4 additions and 1 deletions
5
cd.sh
5
cd.sh
|
@ -251,6 +251,7 @@ local root
|
||||||
local url
|
local url
|
||||||
cd_step "Install Python modules"
|
cd_step "Install Python modules"
|
||||||
root="$(mktemp --directory)" || exit
|
root="$(mktemp --directory)" || exit
|
||||||
|
echo "${root}"
|
||||||
for repository in "${@}" ; do
|
for repository in "${@}" ; do
|
||||||
url="${CD_PROJECTS_URL}/${repository}"
|
url="${CD_PROJECTS_URL}/${repository}"
|
||||||
echo -n "
|
echo -n "
|
||||||
|
@ -313,8 +314,10 @@ cd_rm () {
|
||||||
cd_step () {
|
cd_step () {
|
||||||
if [ "${1}" ] ; then
|
if [ "${1}" ] ; then
|
||||||
CD_STEP=$((CD_STEP+1))
|
CD_STEP=$((CD_STEP+1))
|
||||||
echo "
|
echo "\
|
||||||
|
\\
|
||||||
${CD_STEP} ${1}
|
${CD_STEP} ${1}
|
||||||
|
/
|
||||||
"
|
"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue