mirror of
https://github.com/NixOS/nix
synced 2025-07-02 09:21:47 +02:00
* Use absolute paths.
This commit is contained in:
parent
63791eb05b
commit
9ee88bb2f2
2 changed files with 8 additions and 8 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue