diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-05-08T13·42+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-05-08T13·42+0200 |
commit | 00b286275c1a77458e45bd73528c9ca729cca7f6 (patch) | |
tree | 3e252f2668f428538bf08030bad1bfbb249dcd8e /tests | |
parent | ebfceeb333120411af46d0af4805f3e7d557159f (diff) |
Linux sandbox: Fix compatibility with older kernels
Diffstat (limited to 'tests')
-rw-r--r-- | tests/linux-sandbox.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/linux-sandbox.sh b/tests/linux-sandbox.sh index 740b2c357099..54cdef8178ea 100644 --- a/tests/linux-sandbox.sh +++ b/tests/linux-sandbox.sh @@ -16,7 +16,7 @@ rm -rf $TEST_ROOT/store0 export NIX_STORE_DIR=/my/store export NIX_REMOTE="local?root=$TEST_ROOT/store0" -outPath=$( nix-build dependencies.nix --no-out-link --option build-sandbox-paths /nix/store) +outPath=$(nix-build dependencies.nix --no-out-link --option build-sandbox-paths /nix/store) [[ $outPath =~ /my/store/.*-dependencies ]] |