Browse Source

refactor: improve console output for checking and fetching files

- Updated the console output in `command_update_linuxgsm.sh` to include formatting and improved readability.
- Improved the console output in `core_dl.sh` to include formatting and better indicate the progress of file fetching.
feature/dst-changes
Daniel Gibbs 2 years ago
parent
commit
83d6fda4c6
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 2
      lgsm/modules/command_update_linuxgsm.sh
  2. 2
      lgsm/modules/core_dl.sh

2
lgsm/modules/command_update_linuxgsm.sh

@ -68,7 +68,7 @@ fi
# Check gameserver.sh
# Compare gameserver.sh against linuxgsm.sh in the tmp dir.
# Ignoring server specific vars.
echo -en "checking ${selfname}...\c"
echo -en "${dim}checking ${selfname} ...\c${default}"
fn_script_log_info "Checking ${selfname}"
script_diff=$(diff <(sed '\/shortname/d;\/gameservername/d;\/gamename/d;\/githubuser/d;\/githubrepo/d;\/githubbranch/d' "${tmpdir}/linuxgsm.sh") <(sed '\/shortname/d;\/gameservername/d;\/gamename/d;\/githubuser/d;\/githubrepo/d;\/githubbranch/d' "${rootdir}/${selfname}"))
if [ "${script_diff}" != "" ]; then

2
lgsm/modules/core_dl.sh

@ -403,7 +403,7 @@ fn_fetch_file() {
"${curlcmd[@]}" --progress-bar "${fileurl}" 2>&1
exitcode="$?"
else
echo -en "${dim}fetching from ${fileurl_name} ( ${local_filename} )\c${default}"
echo -en "${dim}fetching from ${fileurl_name} ( ${local_filename} ) ... \c${default}"
"${curlcmd[@]}" --silent --show-error "${fileurl}" 2>&1
exitcode="$?"
fi

Loading…
Cancel
Save