mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 19:44:09 +00:00
Merge pull request #314112 from khaneliman/bicep
bicep: fix updater script
This commit is contained in:
commit
d0a20d7c59
@ -4,6 +4,7 @@
|
||||
set -eo pipefail
|
||||
cd "$(dirname "${BASH_SOURCE[0]}")"
|
||||
|
||||
deps_file="$(realpath "./deps.nix")"
|
||||
new_version="$(curl -s "https://api.github.com/repos/azure/bicep/releases?per_page=1" | jq -r '.[0].name')"
|
||||
old_version="$(sed -nE 's/\s*version = "(.*)".*/\1/p' ./package.nix)"
|
||||
|
||||
@ -13,5 +14,5 @@ if [[ "$new_version" == "$old_version" ]]; then
|
||||
fi
|
||||
|
||||
cd ../../../..
|
||||
update-source-version bicep "${new_version//v}"
|
||||
nix-build -A bicep.fetch-deps --no-out-link
|
||||
update-source-version bicep "${new_version//v/}"
|
||||
"$(nix-build . -A bicep.fetch-deps --no-out-link)" "$deps_file"
|
||||
|
Loading…
Reference in New Issue
Block a user