Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / space-station-14-launcher / update.sh
blob6e8b337d38428f7b6b96970d0cd8ed53dda9dd4d
1 #! /usr/bin/env nix-shell
2 #! nix-shell -I nixpkgs=./. -i bash -p curl jq common-updater-scripts
3 set -eo pipefail
4 cd "$(dirname "${BASH_SOURCE[0]}")"
6 new_version="$(curl -s "https://api.github.com/repos/space-wizards/SS14.Launcher/releases?per_page=1" | jq -r '.[0].tag_name' | sed 's/v//')"
7 old_version="$(sed -nE 's/\s*version = "(.*)".*/\1/p' ./space-station-14-launcher.nix)"
9 if [[ "$new_version" == "$old_version" ]]; then
10 echo "Already up to date!"
11 exit 0
14 cd ../../..
15 update-source-version space-station-14-launcher.unwrapped "$new_version"
16 $(nix-build -A space-station-14-launcher.fetch-deps --no-out-link)