mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
18 lines
611 B
Bash
Executable file
18 lines
611 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -I nixpkgs=./. -i bash -p curl jq common-updater-scripts
|
|
#shellcheck shell=bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
version=$(curl -s ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} \
|
|
https://api.github.com/repos/NickvisionApps/Denaro/releases/latest | jq -e -r .tag_name)
|
|
old_version=$(nix-instantiate --eval -A denaro.version | jq -e -r)
|
|
|
|
if [[ $version == "$old_version" ]]; then
|
|
echo "New version same as old version, nothing to do." >&2
|
|
exit 0
|
|
fi
|
|
|
|
update-source-version denaro "$version"
|
|
|
|
$(nix-build -A denaro.fetch-deps --no-out-link) "$(dirname -- "${BASH_SOURCE[0]}")/deps.nix"
|