e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
14 lines
311 B
Bash
Executable file
14 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
|