From bd7931f36ce6e2de5edfd06abd8bd8d3f67d65df Mon Sep 17 00:00:00 2001 From: EnumDev Date: Thu, 18 Dec 2025 19:48:56 +0200 Subject: [PATCH] Update check-version.sh script --- check-version.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/check-version.sh b/check-version.sh index b20ee49..38f5801 100644 --- a/check-version.sh +++ b/check-version.sh @@ -6,7 +6,10 @@ REPO="xfce/xfce4-settings" # Replace slash with URL encoded representation REPO=$(echo "$REPO" | sed 's|/|%2F|g') +# Get XFCE version +XFCE_VERSION=$(bpm q -d xfce4 | grep '^Version: ' | cut -d' ' -f2 | cut -d'-' -f1) + # Get tag name using Gitlab Rest API -TAG_NAME=$(curl -s -L https://gitlab.xfce.org/api/v4/projects/"$REPO"/repository/tags | jq -r '.[].name' | cut -d'-' -f3 | grep -v 'pre' | sort -V | tail -n1) +TAG_NAME=$(curl -s -L https://gitlab.xfce.org/api/v4/projects/"$REPO"/repository/tags | jq -r '.[].name' | cut -d'-' -f3 | grep "^${XFCE_VERSION}" | head -n1) echo "$TAG_NAME"