Update compare-flake-lock.sh

This commit is contained in:
Dawid Dziurla 2024-05-19 19:34:55 +02:00 committed by GitHub
parent c757b01bd9
commit 31229dbd9e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,12 +8,10 @@ nodes2="$(nix flake metadata '.#' --json | jq '.locks.nodes')"
keys1="$(echo "${nodes1}" | jq 'keys | .[]')"
keys2="$(echo "${nodes2}" | jq 'keys | .[]')"
if [[ "${keys1}" != "${keys2}" ]]; then
echo 'Flake inputs changed!'
exit 1
fi
for key in ${keys1}; do
for key in ${keys2}; do
if [[ "${keys1}" != *"${key}"* ]]; then
continue
fi
owner="$(echo "${nodes1}" | jq -r ".${key}.locked.owner")"
repo="$(echo "${nodes1}" | jq -r ".${key}.locked.repo")"
type="$(echo "${nodes1}" | jq -r ".${key}.locked.type")"