1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-02 09:21:47 +02:00

* Use absolute paths.

This commit is contained in:
Eelco Dolstra 2005-01-14 13:50:00 +00:00
parent 63791eb05b
commit 9ee88bb2f2
2 changed files with 8 additions and 8 deletions

View file

@ -19,11 +19,11 @@ for i in "$@"; do
extraArgs="$extraArgs $i"
;;
*)
storeExprs=$(nix-instantiate "$i")
storeExprs=$(@bindir@/nix-instantiate "$i")
for j in $storeExprs; do
echo "store expression is $j" >&2
done
outPaths=$(nix-store -qnfv $extraArgs $storeExprs)
outPaths=$(@bindir@/nix-store -qnfv $extraArgs $storeExprs)
for j in $outPaths; do
echo "$j"
if test -z "$noLink"; then