mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
12 lines
312 B
Bash
Executable file
12 lines
312 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'[_-]' '/jicofo/ {printf $2"-"$3"\n"}' | \
|
|
sort -u | \
|
|
tail -n 1)"
|
|
|
|
update-source-version jicofo "$version"
|