From f11078356260bf7dbdeed499ceb1b49d6a78c5fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20-=20Le=20Filament?= <theo@le-filament.com> Date: Wed, 25 Sep 2024 14:49:08 +0200 Subject: [PATCH] fix: typo in module installation logging --- get_addons | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/get_addons b/get_addons index 581a1a7..d837d0e 100644 --- a/get_addons +++ b/get_addons @@ -91,30 +91,30 @@ dst="$1" shift modules="$@" -# Clonning repo. +# Cloning repo. # set +e -log_action="repo '$repo': clonning [no tree + branch]..." +log_action="repo '$repo': cloning [no tree + branch]..." print_info "$log_action" git clone --branch "${ref}" --filter=tree:0 "${repo}" "${TMP_REPO_PATH}" if [ "$?" -eq 0 ]; then print_success "$log_action" else print_failed "$log_action" - log_action="repo '$repo': clonning [no tree]..." + log_action="repo '$repo': cloning [no tree]..." print_info "$log_action" git clone --filter=tree:0 "${repo}" "${TMP_REPO_PATH}" if [ "$?" -eq 0 ]; then print_success "$log_action" else print_failed "$log_action" - log_action="repo '$repo': clonning [branch]..." + log_action="repo '$repo': cloning [branch]..." print_info "$log_action" git clone --single-branch --branch "${ref}" --depth 1 "${repo}" "${TMP_REPO_PATH}" if [ "$?" -eq 0 ]; then print_success "$log_action" else print_failed "$log_action" - log_action="repo '$repo': clonning [classic]..." + log_action="repo '$repo': cloning [classic]..." print_info "$log_action" git clone "${repo}" "${TMP_REPO_PATH}" if [ "$?" -eq 0 ]; then -- GitLab