diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..6b8d71d --- /dev/null +++ b/check-version.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# Sourceforge project +REPO="dosbox" + +# 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) + +# Replace '-' with '.' +VERSION=${VERSION//-/.} + +echo "$VERSION"