diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-12-13T21·04+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-12-13T21·04+0000 |
commit | ab5c6bb3a3deef29c6fe0a86017d35bc4f3de506 (patch) | |
tree | b20966a04ab787ba4787c4f98800fcadbf1b1781 /tests/dependencies.sh | |
parent | d87549c1c7bb6f85ff0a019b33b315ace0013e6b (diff) |
* Change `referer' to `referrer' throughout. In particular, the
nix-store query options `--referer' and `--referer-closure' have been changed to `--referrer' and `--referrer-closure' (but the old ones are still accepted for compatibility).
Diffstat (limited to 'tests/dependencies.sh')
-rw-r--r-- | tests/dependencies.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/dependencies.sh b/tests/dependencies.sh index 87f0682ac438..56e1b286b6aa 100644 --- a/tests/dependencies.sh +++ b/tests/dependencies.sh @@ -22,8 +22,8 @@ if echo "$deps" | grep -q "dependencies-input-1"; then exit 1; fi # Input-2 is retained. input2OutPath=$(echo "$deps" | grep "dependencies-input-2") -# The referers closure of input-2 should include outPath. -$TOP/src/nix-store/nix-store -q --referers-closure "$input2OutPath" | grep "$outPath" +# The referrers closure of input-2 should include outPath. +$TOP/src/nix-store/nix-store -q --referrers-closure "$input2OutPath" | grep "$outPath" # Check that the derivers are set properly. test $($TOP/src/nix-store/nix-store -q --deriver "$outPath") = "$drvPath" |