705e150b60
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
13 lines
316 B
Bash
Executable File
13 lines
316 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'[_-]' '/jibri/ {printf $2"-"$3"-"$4"\n"}' | \
|
|
sort -Vu | \
|
|
tail -n 1)"
|
|
|
|
update-source-version jibri "$version"
|