Skip to content

Commit

Permalink
ui fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dgibbs64 committed Nov 20, 2024
1 parent 9f1e92f commit 6f28203
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lgsm/modules/command_fastdl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -411,18 +411,18 @@ fn_fastdl_gmod_dl_enforcer() {
# Compresses Fastdl files using bzip2.
fn_fastdl_bzip2() {
while read -r filetocompress; do
fn_print "compressing ${filetocompress}"
fn_print_nl "compressing ${filetocompress}"
bzip2 -f "${filetocompress}"
exitcode=$?
if [ "${exitcode}" != 0 ]; then
fn_print_fail_eol_nl
fn_script_log_fail "Compressing ${filetocompress}"
core_exit.sh
else
fn_print_ok_eol_nl
fn_script_log_pass "Compressing ${filetocompress}"
fi
done < <(find "${fastdldir:?}" \( -type f ! -name "*.bz2" \))
fn_print_ok_eol_nl
}

check.sh
Expand Down

0 comments on commit 6f28203

Please sign in to comment.