Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
18 lines
572 B
Bash
Executable file
18 lines
572 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/artempyanykh/marksman/releases/latest | jq -e -r .tag_name)
|
|
old_version=$(nix-instantiate --eval -A marksman.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 marksman "$version"
|
|
|
|
$(nix-build -A marksman.fetch-deps --no-out-link)
|