diff --git a/cd.sh b/cd.sh index 8451451..541073d 100644 --- a/cd.sh +++ b/cd.sh @@ -3,8 +3,8 @@ CD_DNS_SERVERS=( '9.9.9.9' ) +CD_NAME='cd' CD_REPOSITORIES_PARENT='rwx' -CD_REPOSITORY_NAME='cd' CD_DNS_FILE='/etc/resolv.conf' case "${CD_OS_NAME}" in @@ -223,7 +223,7 @@ local root root="$(mktemp --directory)" || exit for repository in \ "${CD_REPOSITORIES_PARENT}" \ - "${CD_REPOSITORY_NAME}" \ + "${CD_NAME}" \ ; do git clone \ "${CD_REPOSITORIES_URL}/${repository}" "${root}/${repository}" \ @@ -237,7 +237,7 @@ local root function cd_bootstrap { cd_step "${FUNCNAME}" - "${CD_PYTHON_COMMAND}" -m "${CD_REPOSITORY_NAME}" + "${CD_PYTHON_COMMAND}" -m "${CD_NAME}" } function cd_main {