mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
14 lines
477 B
Bash
Executable file
14 lines
477 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl gnugrep common-updater-scripts
|
|
set -euo pipefail
|
|
|
|
owner=dubeyko
|
|
repo=ssdfs-tools
|
|
|
|
version="$(curl --silent https://raw.githubusercontent.com/${owner}/${repo}/master/configure.ac | \
|
|
grep 'AC_INIT(ssdfs' | \
|
|
egrep -o '[0-9\.]{3,}')"
|
|
|
|
rev=$(curl -s -H "Accept: application/vnd.github.VERSION.sha" https://api.github.com/repos/${owner}/${repo}/commits/master)
|
|
|
|
update-source-version ssdfs-utils "$version" --rev="$rev"
|