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/nix-channel.sh | |
parent | f3e0d468218994343d0e595a50304cc122ad1406 (diff) |
Fix tests
`nix copy` no longer accepts a `--recursive` argument
Diffstat (limited to 'tests/nix-channel.sh')
-rw-r--r-- | tests/nix-channel.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/nix-channel.sh b/tests/nix-channel.sh index 553ada51d9f7..55f1695c4412 100644 --- a/tests/nix-channel.sh +++ b/tests/nix-channel.sh @@ -15,7 +15,7 @@ nix-channel --remove xyzzy # Create a channel. rm -rf $TEST_ROOT/foo mkdir -p $TEST_ROOT/foo -nix copy --recursive --to file://$TEST_ROOT/foo?compression="bzip2" $(nix-store -r $(nix-instantiate dependencies.nix)) +nix copy --to file://$TEST_ROOT/foo?compression="bzip2" $(nix-store -r $(nix-instantiate dependencies.nix)) rm -rf $TEST_ROOT/nixexprs mkdir -p $TEST_ROOT/nixexprs cp config.nix dependencies.nix dependencies.builder*.sh $TEST_ROOT/nixexprs/ |