Browse Source

mcb remove non printable characters

pull/4146/head
Daniel Gibbs 3 years ago
parent
commit
128d1a767c
  1. 2
      lgsm/functions/update_minecraft_bedrock.sh

2
lgsm/functions/update_minecraft_bedrock.sh

@ -34,7 +34,7 @@ fn_update_localbuild() {
# Gets local build info.
fn_print_dots "Checking local build: ${remotelocation}"
# Uses log file to get local build.
localbuild=$(grep Version "${consolelogdir}"/* 2> /dev/null | tail -1 | sed 's/.*Version //')
localbuild=$(grep Version "${consolelogdir}"/* 2> /dev/null | tail -1 | sed 's/.*Version //' | tr -d '\000-\011\013-\037')
if [ -z "${localbuild}" ]; then
fn_print_error "Checking local build: ${remotelocation}: missing local build info"
fn_script_log_error "Missing local build info"

Loading…
Cancel
Save