Skip to content

Commit

Permalink
fix: changed Download to download
Browse files Browse the repository at this point in the history
  • Loading branch information
dgibbs64 committed Feb 24, 2023
1 parent 9a026ec commit 21aa74f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lgsm/functions/core_dl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -243,12 +243,12 @@ fn_fetch_trap() {
echo -e ""
echo -en "downloading ${local_filename}..."
fn_print_canceled_eol_nl
fn_script_log_info "Downloading ${local_filename}...CANCELED"
fn_script_log_info "downloading ${local_filename}...CANCELED"
fn_sleep_time
rm -f "${local_filedir:?}/${local_filename}"
echo -en "downloading ${local_filename}..."
fn_print_removed_eol_nl
fn_script_log_info "Downloading ${local_filename}...REMOVED"
fn_script_log_info "downloading ${local_filename}...REMOVED"
core_exit.sh
}

Expand Down Expand Up @@ -385,14 +385,14 @@ fn_fetch_file() {
if [ ${counter} -ge 2 ]; then
fn_print_fail_eol_nl
if [ -f "${lgsmlog}" ]; then
fn_script_log_fatal "Downloading ${local_filename}"
fn_script_log_fatal "downloading ${local_filename}"
fn_script_log_fatal "${fileurl}"
fi
core_exit.sh
else
fn_print_error_eol_nl
if [ -f "${lgsmlog}" ]; then
fn_script_log_error "Downloading ${local_filename}"
fn_script_log_error "downloading ${local_filename}"
fn_script_log_error "${fileurl}"
fi
fi
Expand All @@ -401,7 +401,7 @@ fn_fetch_file() {
sleep 0.3
echo -en "\033[2K\\r"
if [ -f "${lgsmlog}" ]; then
fn_script_log_pass "Downloading ${local_filename}"
fn_script_log_pass "downloading ${local_filename}"
fi

# Make file executable if chmodx is set.
Expand Down

0 comments on commit 21aa74f

Please sign in to comment.