cd_name
Some checks failed
/ job (push) Failing after 6s

This commit is contained in:
Marc Beninca 2024-04-27 01:51:54 +02:00
parent 81b7d3b209
commit 01af7b368f
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

6
cd.sh
View file

@ -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 {