diff options
author | Dan Peebles <pumpkin@me.com> | 2017-10-03T03·41-0400 |
---|---|---|
committer | Dan Peebles <pumpkin@me.com> | 2017-10-03T03·45-0400 |
commit | 3139cad9cd3aab9e1fe06b6fb5e9e11b3524aca2 (patch) | |
tree | a4a6b1164cbc8529017667225c46a11958d81cbc /tests/binary-cache.sh | |
parent | f3e0d468218994343d0e595a50304cc122ad1406 (diff) |
Fix tests
`nix copy` no longer accepts a `--recursive` argument
Diffstat (limited to 'tests/binary-cache.sh')
-rw-r--r-- | tests/binary-cache.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/binary-cache.sh b/tests/binary-cache.sh index 532099d02142..30d7cc6ba88c 100644 --- a/tests/binary-cache.sh +++ b/tests/binary-cache.sh @@ -6,7 +6,7 @@ clearCache # Create the binary cache. outPath=$(nix-build dependencies.nix --no-out-link) -nix copy --recursive --to file://$cacheDir $outPath +nix copy --to file://$cacheDir $outPath basicTests() { @@ -117,7 +117,7 @@ badKey="$(cat $TEST_ROOT/pk2)" res=($(nix-store --generate-binary-cache-key foo.nixos.org-1 $TEST_ROOT/sk3 $TEST_ROOT/pk3)) otherKey="$(cat $TEST_ROOT/pk3)" -nix copy --recursive --to file://$cacheDir?secret-key=$TEST_ROOT/sk1 $outPath +nix copy --to file://$cacheDir?secret-key=$TEST_ROOT/sk1 $outPath # Downloading should fail if we don't provide a key. |