From 57711318a7eb30f9ba02d48e4352d0d1412905ae Mon Sep 17 00:00:00 2001 From: Krystie Date: Wed, 8 Apr 2026 04:08:49 -0700 Subject: [PATCH] Tighten automatic upstream version tracking --- .github/docker/Dockerfile.arm64 | 2 +- bootstrap.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/docker/Dockerfile.arm64 b/.github/docker/Dockerfile.arm64 index ce3162c..84ac8a0 100644 --- a/.github/docker/Dockerfile.arm64 +++ b/.github/docker/Dockerfile.arm64 @@ -1,6 +1,6 @@ FROM ubuntu:24.04 -ARG TRIANGLES_VERSION=v5.5.0 +ARG TRIANGLES_VERSION=v5.7.6 RUN apt-get update && apt-get install -y \ git build-essential libtool autotools-dev automake pkg-config \ diff --git a/bootstrap.sh b/bootstrap.sh index 64684d9..5bd9064 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -32,8 +32,8 @@ echo "✓ ARM64 detected" echo "🔍 Checking latest release..." VERSION=$(curl -sL https://api.github.com/repos/SamiAhmed7777/tri-pi/releases/latest | grep '"tag_name"' | cut -d'"' -f4) if [ -z "$VERSION" ]; then - echo "⚠️ Could not detect latest version, using v5.5.0" - VERSION="v5.5.0" + echo "⚠️ Could not detect latest version" + exit 1 fi echo " Latest: $VERSION"