Initial commit

This commit is contained in:
2025-10-01 09:28:26 +03:00
commit 2b1dc7e340
4 changed files with 63 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Sourceforge project
REPO="judy"
# Get version using best_release.json
VERSION=$(curl -s -L https://sourceforge.net/projects/"$REPO"/best_release.json | jq '.platform_releases.linux.filename' | cut -d'/' -f3)
# Trim prefix
VERSION=${VERSION//Judy-/}
echo "$VERSION"