mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
13 lines
312 B
Bash
13 lines
312 B
Bash
|
#!/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"
|