diff options
Diffstat (limited to 'corepkgs/nar/nar.sh.in')
-rw-r--r-- | corepkgs/nar/nar.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/corepkgs/nar/nar.sh.in b/corepkgs/nar/nar.sh.in index caa960877b4b..67933ac67f0b 100644 --- a/corepkgs/nar/nar.sh.in +++ b/corepkgs/nar/nar.sh.in @@ -1,9 +1,9 @@ #! @shell@ -e -echo "packing $path into $out..." +echo "packing $storePath into $out..." @coreutils@/mkdir $out dst=$out/tmp.nar.bz2 -@bindir@/nix-store --dump "$path" > tmp +@bindir@/nix-store --dump "$storePath" > tmp @bzip2@ < tmp > $dst |