mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
16 lines
522 B
Bash
Executable file
16 lines
522 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl jq common-updater-scripts
|
|
set -euo pipefail
|
|
|
|
new_version="$(curl -s "https://api.github.com/repos/fifty-six/Scarab/releases?per_page=1" | jq -r '.[0].name')"
|
|
new_version=${new_version#"v"}
|
|
old_version="$(sed -nE 's/^\s*version = "([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)";$/\1/p' ./default.nix)"
|
|
|
|
if [[ "$new_version" == "$old_version" ]]; then
|
|
echo "Up to date"
|
|
exit 0
|
|
fi
|
|
|
|
update-source-version scarab "$new_version"
|
|
|
|
$(nix-build . -A scarab.fetch-deps --no-out-link)
|