From b4a80f5ba1645aeec52a6716e950584dcce25ca1 Mon Sep 17 00:00:00 2001 From: bryan Date: Fri, 7 Nov 2025 23:24:58 -0500 Subject: [PATCH] 1.34.11 release --- installJRMC | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/installJRMC b/installJRMC index 5115a5e..fba20c5 100755 --- a/installJRMC +++ b/installJRMC @@ -21,7 +21,7 @@ # shellcheck disable=SC2329 shopt -s extglob -declare -g SCRIPT_VERSION="1.34.11-dev" +declare -g SCRIPT_VERSION="1.34.11" declare -g MC_VERSION_HARDCODE="34.0.71" # do find all replace declare -g MC_REPO_HARDCODE="bookworm" # should match the MC_VERSION_HARDCODE declare -g BOARD_ID="89.0" # MC34 board ID for automatic version detection @@ -757,10 +757,10 @@ acquire_deb() { MC_DEB="$OUTPUT_DIR/SOURCES/$fname" MC_SOURCE="https://files.jriver-cdn.com/mediacenter/channels/v$MC_MVERSION/latest/$fname" - # If deb file already exists, skip download + # If deb file already exists and is >30MB, skip download if [[ -f $MC_DEB ]]; then - if [[ $(stat -c%s "$MC_DEB") -lt 10000000 ]]; then - echo "Removing existing DEB under 10MB: $MC_DEB" + if [[ $(stat -c%s "$MC_DEB") -lt 30000000 ]]; then + echo "Removing existing DEB under 30MB: $MC_DEB" execute rm -f "$MC_DEB" else echo "Using existing DEB: $MC_DEB"