3 Commits

Author SHA1 Message Date
cd0ba6b419 1.3.7 release 2024-10-22 00:11:20 -04:00
ea473eb58c If corrupted deb is removed, reacquire 2024-10-22 00:10:46 -04:00
9ed34c1dfe 1.3.6 release 2024-10-22 00:06:25 -04:00

View File

@@ -16,7 +16,7 @@
shopt -s extglob shopt -s extglob
declare -g SCRIPT_VERSION="1.3.6-dev" declare -g SCRIPT_VERSION="1.3.7"
declare -g MC_REPO="bullseye" # should match the MC_VERSION declare -g MC_REPO="bullseye" # should match the MC_VERSION
declare -g MC_VERSION="33.0.30" # Do find all replace declare -g MC_VERSION="33.0.30" # Do find all replace
declare -g BOARD_URL="https://yabb.jriver.com/interact/index.php/board,86.0.html" # MC33 declare -g BOARD_URL="https://yabb.jriver.com/interact/index.php/board,86.0.html" # MC33
@@ -621,9 +621,9 @@ acquire_deb() {
execute rm "$MC_DEB" execute rm "$MC_DEB"
else else
echo "Using existing DEB: $MC_DEB" echo "Using existing DEB: $MC_DEB"
fi
return 0 return 0
fi fi
fi
# Define the repositories to check # Define the repositories to check
local repos=( local repos=(
@@ -640,7 +640,7 @@ acquire_deb() {
break break
fi fi
err "DEB file not found/downloaded" err "DEB file not found/downloaded"
exit 1 return 1
done done
[[ -f $MC_DEB ]] [[ -f $MC_DEB ]]