Browse Source

refactor: improve console output in core_dl.sh and linuxgsm.sh

- Refactored code to improve the console output in core_dl.sh and linuxgsm.sh.
- Updated echo statements to provide more informative messages.
- Removed unnecessary characters from the console output.
feature/dst-changes
Daniel Gibbs 2 years ago
parent
commit
91bd38fabf
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 2
      lgsm/modules/core_dl.sh
  2. 2
      linuxgsm.sh

2
lgsm/modules/core_dl.sh

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

2
linuxgsm.sh

@ -136,7 +136,7 @@ fn_bootstrap_fetch_file() {
fi fi
fi fi
else else
echo -en " [ OK ]" echo -en "OK"
sleep 0.3 sleep 0.3
echo -en "\033[2K\\r" echo -en "\033[2K\\r"
if [ -f "${lgsmlog}" ]; then if [ -f "${lgsmlog}" ]; then

Loading…
Cancel
Save