diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-07-24 20:42:24 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-12-03 18:09:02 +0100 |
commit | ef583303f0720d8bc9d6351cd769f92d5dd678f3 (patch) | |
tree | 8d15ff9adc90fb7d6a2499a33936e6ed0049f219 /tests/linux-sandbox.sh | |
parent | 79c1967ded92574129c6a20116ef205a9c747bac (diff) |
Move NAR-related commands to 'nix nar'
Diffstat (limited to 'tests/linux-sandbox.sh')
-rw-r--r-- | tests/linux-sandbox.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/linux-sandbox.sh b/tests/linux-sandbox.sh index 16abd974c..70a90a907 100644 --- a/tests/linux-sandbox.sh +++ b/tests/linux-sandbox.sh @@ -22,9 +22,9 @@ outPath=$(nix-build dependencies.nix --no-out-link --sandbox-paths /nix/store) nix path-info -r $outPath | grep input-2 -nix ls-store -R -l $outPath | grep foobar +nix store ls -R -l $outPath | grep foobar -nix cat-store $outPath/foobar | grep FOOBAR +nix store cat $outPath/foobar | grep FOOBAR # Test --check without hash rewriting. nix-build dependencies.nix --no-out-link --check --sandbox-paths /nix/store |