1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-08 11:03:54 +02:00

Fix tests to reflect the signed-binary-caches default change

This commit is contained in:
Eelco Dolstra 2017-03-21 18:06:13 +01:00
parent e1e49c58e1
commit aa23bba27f
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
3 changed files with 11 additions and 10 deletions

View file

@ -51,7 +51,7 @@ nix copy --recursive --to file://$cacheDir $path
chmod u+w $path2
rm -rf $path2
nix-store --verify --check-contents --repair --option binary-caches "file://$cacheDir"
nix-store --verify --check-contents --repair --option binary-caches "file://$cacheDir" --option signed-binary-caches ''
if [ "$(nix-hash $path2)" != "$hash" -o -e $path2/bad ]; then
echo "path not repaired properly" >&2
@ -69,7 +69,7 @@ if nix-store --verify-path $path2; then
exit 1
fi
nix-store --repair-path $path2 --option binary-caches "file://$cacheDir"
nix-store --repair-path $path2 --option binary-caches "file://$cacheDir" --option signed-binary-caches ''
if [ "$(nix-hash $path2)" != "$hash" -o -e $path2/bad ]; then
echo "path not repaired properly" >&2