mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
9 lines
287 B
Bash
Executable file
9 lines
287 B
Bash
Executable file
#!/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"
|