diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-03-01T12·51+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-03-01T12·51+0000 |
commit | 84c4631221bc65643830173b4affe58b0dc58202 (patch) | |
tree | 19093aff12bbb33e1b377a2fdec688965e42029e /tests/locking.sh | |
parent | a4c63c6e8e161d55778b797e566d9eca7c47f34f (diff) |
* Simplification.
Diffstat (limited to 'tests/locking.sh')
-rw-r--r-- | tests/locking.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/locking.sh b/tests/locking.sh index 3e1788660602..4b41de3916a9 100644 --- a/tests/locking.sh +++ b/tests/locking.sh @@ -1,17 +1,17 @@ source common.sh -drvPath=$($TOP/src/nix-instantiate/nix-instantiate locking.nix) +drvPath=$($nixinstantiate locking.nix) echo "derivation is $drvPath" for i in 1 2 3 4 5; do echo "WORKER $i" - $TOP/src/nix-store/nix-store -rvv "$drvPath" & + $nixstore -rvv "$drvPath" & done sleep 5 -outPath=$($TOP/src/nix-store/nix-store -qvvf "$drvPath") +outPath=$($nixstore -qvvf "$drvPath") echo "output path is $outPath" |