fdc4d771f9
Add a script to auto-update to the most recent stable version of jitsi-videobridge.
13 lines
340 B
Bash
Executable File
13 lines
340 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-videobridge2/ {printf $3"-"$4"-"$5"\n"}' | \
|
|
sort -u | \
|
|
tail -n 1)"
|
|
|
|
update-source-version jitsi-videobridge "$version"
|