diff --git a/get_addons b/get_addons index b8f277d8e1abf922fe7aa4ef46f2182e6e8818c1..5363c3dfdbefa05ff28aa82d6c42ec06e422635a 100644 --- a/get_addons +++ b/get_addons @@ -89,29 +89,29 @@ dst="$1" shift modules="$@" -# Clonning repo. -log_action="repo '$repo': clonning [no tree + branch]..." +# Cloning repo. +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