biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / marksman / update.sh
blobb17097e683c422dd40d8210993db1b557f5a3e7d
1 #!/usr/bin/env nix-shell
2 #!nix-shell -I nixpkgs=./. -i bash -p curl jq common-updater-scripts
3 #shellcheck shell=bash
5 set -eu -o pipefail
7 version=$(curl -s ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} \
8 https://api.github.com/repos/artempyanykh/marksman/releases/latest | jq -e -r .tag_name)
9 old_version=$(nix-instantiate --eval -A marksman.version | jq -e -r)
11 if [[ $version == "$old_version" ]]; then
12 echo "New version same as old version, nothing to do." >&2
13 exit 0
16 update-source-version marksman "$version"
18 $(nix-build -A marksman.fetch-deps --no-out-link)