From 84c4631221bc65643830173b4affe58b0dc58202 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 1 Mar 2006 12:51:18 +0000 Subject: * Simplification. --- tests/substitutes.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/substitutes.sh') diff --git a/tests/substitutes.sh b/tests/substitutes.sh index 680f114b5e17..c44f012f5924 100644 --- a/tests/substitutes.sh +++ b/tests/substitutes.sh @@ -1,22 +1,22 @@ source common.sh # Instantiate. -drvPath=$($TOP/src/nix-instantiate/nix-instantiate substitutes.nix) +drvPath=$($nixinstantiate substitutes.nix) echo "derivation is $drvPath" # Find the output path. -outPath=$($TOP/src/nix-store/nix-store -qvv "$drvPath") +outPath=$($nixstore -qvv "$drvPath") echo "output path is $outPath" regSub() { - (echo $1 && echo "" && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld && echo 0) | $TOP/src/nix-store/nix-store --register-substitutes + (echo $1 && echo "" && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld && echo 0) | $nixstore --register-substitutes } # Register a substitute for the output path. regSub $outPath $(pwd)/substituter.sh -$TOP/src/nix-store/nix-store -rvv "$drvPath" +$nixstore -rvv "$drvPath" text=$(cat "$outPath"/hello) if test "$text" != "Hallo Wereld"; then exit 1; fi -- cgit 1.4.1