mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
10 lines
287 B
Bash
10 lines
287 B
Bash
|
#!/usr/bin/env nix-shell
|
||
|
#!nix-shell -i bash -p curl xq-xml common-updater-scripts
|
||
|
|
||
|
set -eu -o pipefail
|
||
|
|
||
|
version="$(curl https://www.jetbrains.com/youtrack/update.xml | \
|
||
|
xq -x "/products/product[@name='YouTrack']/channel/build/@version")"
|
||
|
|
||
|
update-source-version youtrack "$version"
|