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/simple.sh | |
parent | a4c63c6e8e161d55778b797e566d9eca7c47f34f (diff) |
* Simplification.
Diffstat (limited to 'tests/simple.sh')
-rw-r--r-- | tests/simple.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/simple.sh b/tests/simple.sh index 3e58bcc845c2..225e7c522498 100644 --- a/tests/simple.sh +++ b/tests/simple.sh @@ -1,10 +1,10 @@ source common.sh -drvPath=$($TOP/src/nix-instantiate/nix-instantiate simple.nix) +drvPath=$($nixinstantiate simple.nix) echo "derivation is $drvPath" -outPath=$($TOP/src/nix-store/nix-store -rvv "$drvPath") +outPath=$($nixstore -rvv "$drvPath") echo "output path is $outPath" |