From afe2a750262c1d2fb28f9490394c4dd698dd5859 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:46:20 +0200 Subject: [PATCH] fix: typo in module installation logging --- get_addons | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/get_addons b/get_addons index c2345d0..d0d999c 100644 --- a/get_addons +++ b/get_addons @@ -89,15 +89,15 @@ dst="$1" shift modules="$@" -# Clonning repo. -log_action="repo '$repo': clonning [branch]..." +# Cloning repo. +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