mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
c1afdf8afc
Signed-off-by: lucasew <lucas59356@gmail.com>
15 lines
311 B
Bash
Executable File
15 lines
311 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#! nix-shell -i bash -p curl common-updater-scripts
|
|
|
|
set -e
|
|
|
|
repo_url="$1"; shift
|
|
|
|
data="$(curl "$repo_url/tags")"
|
|
|
|
rev="$(echo "$data" | grep '/rev/v' | sed 's;.*/rev/v\([^"]*\)[^$]*;\1;' | head -n 1)"
|
|
echo "new rev: $rev"
|
|
|
|
update-source-version shadershark "$rev" \
|
|
--print-changes
|