nixpkgs/pkgs/servers/jicofo/update.sh

13 lines
312 B
Bash
Raw Normal View History

2021-09-09 21:08:30 +02:00
#!/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'[_-]' '/jicofo/ {printf $2"-"$3"\n"}' | \
sort -u | \
tail -n 1)"
update-source-version jicofo "$version"