mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
19 lines
565 B
Bash
Executable file
19 lines
565 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -I nixpkgs=./. -i bash -p curl jq common-updater-scripts
|
|
set -eo pipefail
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
new_version="$(curl -s "https://api.github.com/repos/ppy/osu/releases?per_page=1" | jq -r '.[0].name')"
|
|
old_version="$(sed -nE 's/\s*version = "(.*)".*/\1/p' ./default.nix)"
|
|
if [[ "$new_version" == "$old_version" ]]; then
|
|
echo "Up to date"
|
|
exit 0
|
|
fi
|
|
|
|
cd ../../..
|
|
|
|
if [[ "$1" != "--deps-only" ]]; then
|
|
update-source-version osu-lazer "$new_version"
|
|
fi
|
|
|
|
$(nix-build . -A osu-lazer.fetch-deps --no-out-link)
|