From 9c2c83460347ffe69cd77dd41edba1f080d51959 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Fri, 23 Aug 2024 17:00:06 +0200 Subject: [PATCH] spcd_git_url --- spcd.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spcd.sh b/spcd.sh index ac7cf4c..ac1e6f4 100644 --- a/spcd.sh +++ b/spcd.sh @@ -715,7 +715,7 @@ spcd_install_python_modules() { spcd_step "Install Python modules" spcd_ipm__target="${SPCD_PYTHON_VENV_PACKAGES}" for spcd_ipm__repository in "${SPCD_GIT_MAIN}" "${SPCD_GIT_ROOT}"; do - spcd_ipm__url="$(spcd_get_git_url "${spcd_ipm__repository}")" + spcd_ipm__url="$(spcd_git_url "${spcd_ipm__repository}")" spcd_ipm__name="$(basename "${spcd_ipm__url}")" spcd_split echo "\ @@ -880,7 +880,7 @@ spcd_error_os() { exit "${SPCD_ERROR_OS}" } -spcd_get_git_url() { +spcd_git_url() { if [ -n "${1}" ]; then case "${1}" in http*) echo "${1}" ;;