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
No known key found for this signature in database
GPG Key ID: 2076B128385E8C55
2 changed files with
2 additions and
2 deletions
lgsm/modules/command_update_linuxgsm.sh
lgsm/modules/core_dl.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
@ -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