Files
thunar/check-version.sh
T

16 lines
458 B
Bash

#!/bin/bash
# Gitlab repository
REPO="xfce/thunar"
# 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'-' -f2 | grep "^${XFCE_VERSION}" | head -n1)
echo "$TAG_NAME"