1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 01:51:47 +02:00

Remove the --indirect flag

All GC roots are now indirect.
This commit is contained in:
Eelco Dolstra 2020-09-03 11:22:00 +02:00
parent b07167be5a
commit 00d25e8457
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
6 changed files with 21 additions and 38 deletions

View file

@ -24,5 +24,5 @@ outPath2=$(nix-build $(nix-instantiate dependencies.nix) --no-out-link)
outPath2=$(nix-build $(nix-instantiate dependencies.nix)!out --no-out-link)
[[ $outPath = $outPath2 ]]
outPath2=$(nix-store -r $(nix-instantiate --indirect --add-root $TEST_ROOT/indirect dependencies.nix)!out)
outPath2=$(nix-store -r $(nix-instantiate --add-root $TEST_ROOT/indirect dependencies.nix)!out)
[[ $outPath = $outPath2 ]]