diff --git a/get_addons b/get_addons index 581a1a7a87f9acf9f1062f8e309bc07849e95e13..d837d0ef89cee3b1af7927ea70f9b5721996c24a 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