nixpkgs/pkgs/misc/jitsi-meet-prosody/update.sh
Cleeyv 705e150b60 jitsi: fix update scripts
To consistently return the latest version number even when it is no longer
at the bottom of the alphanumeric list on the Jitsi stable download page.
Based on fix by @sbruder in 13760b87d2
2022-10-22 12:11:18 +02:00

13 lines
332 B
Bash
Executable File

#!/usr/bin/env nix-shell
#!nix-shell -i bash -p curl pup common-updater-scripts
set -eu -o pipefail
version="$(curl https://download.jitsi.org/stable/ | \
pup 'a[href] text{}' | \
awk -F'[_-]' '/jitsi-meet-prosody/ {printf $4"\n"}' | \
sort -Vu | \
tail -n 1)"
update-source-version jitsi-meet-prosody "$version"