diff options
Diffstat (limited to 'corepkgs')
-rw-r--r-- | corepkgs/nar/unnar.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/corepkgs/nar/unnar.sh.in b/corepkgs/nar/unnar.sh.in index 3081356497fa..b0b6f9d468f2 100644 --- a/corepkgs/nar/unnar.sh.in +++ b/corepkgs/nar/unnar.sh.in @@ -2,5 +2,5 @@ export PATH=/bin:/usr/bin -echo "unpacking $nar to $out..." -bunzip2 < $nar | @bindir@/nix-store --restore "$out" || exit 1 +echo "unpacking $narFile to $out..." +bunzip2 < $narFile | @bindir@/nix-store --restore "$out" || exit 1 |