Skip to content

Commit 21aa74f

Browse files
committed
fix: changed Download to download
1 parent 9a026ec commit 21aa74f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lgsm/functions/core_dl.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -243,12 +243,12 @@ fn_fetch_trap() {
243243
echo -e ""
244244
echo -en "downloading ${local_filename}..."
245245
fn_print_canceled_eol_nl
246-
fn_script_log_info "Downloading ${local_filename}...CANCELED"
246+
fn_script_log_info "downloading ${local_filename}...CANCELED"
247247
fn_sleep_time
248248
rm -f "${local_filedir:?}/${local_filename}"
249249
echo -en "downloading ${local_filename}..."
250250
fn_print_removed_eol_nl
251-
fn_script_log_info "Downloading ${local_filename}...REMOVED"
251+
fn_script_log_info "downloading ${local_filename}...REMOVED"
252252
core_exit.sh
253253
}
254254

@@ -385,14 +385,14 @@ fn_fetch_file() {
385385
if [ ${counter} -ge 2 ]; then
386386
fn_print_fail_eol_nl
387387
if [ -f "${lgsmlog}" ]; then
388-
fn_script_log_fatal "Downloading ${local_filename}"
388+
fn_script_log_fatal "downloading ${local_filename}"
389389
fn_script_log_fatal "${fileurl}"
390390
fi
391391
core_exit.sh
392392
else
393393
fn_print_error_eol_nl
394394
if [ -f "${lgsmlog}" ]; then
395-
fn_script_log_error "Downloading ${local_filename}"
395+
fn_script_log_error "downloading ${local_filename}"
396396
fn_script_log_error "${fileurl}"
397397
fi
398398
fi
@@ -401,7 +401,7 @@ fn_fetch_file() {
401401
sleep 0.3
402402
echo -en "\033[2K\\r"
403403
if [ -f "${lgsmlog}" ]; then
404-
fn_script_log_pass "Downloading ${local_filename}"
404+
fn_script_log_pass "downloading ${local_filename}"
405405
fi
406406

407407
# Make file executable if chmodx is set.

0 commit comments

Comments
 (0)