Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 17 lines 518 B view raw
1#!/usr/bin/env nix-shell 2#!nix-shell -i bash -p curl jq common-updater-scripts 3#shellcheck shell=bash 4 5set -eu -o pipefail 6 7version=$(curl -s ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} \ 8 https://api.github.com/repos/nkallen/plasticity/releases/latest | jq -e -r ".tag_name | .[1:]") 9old_version=$(nix-instantiate --eval -A plasticity.version | jq -e -r) 10 11if [[ $version == "$old_version" ]]; then 12 echo "New version same as old version, nothing to do." >&2 13 exit 0 14fi 15 16update-source-version plasticity "$version" 17