Skip to content
Snippets Groups Projects
Commit 3f6ca8ac authored by Théo - Le Filament's avatar Théo - Le Filament
Browse files

fix: typo in module installation logging

parent b51c2ffb
Branches 10.0
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment