From d1d87badf6d07c9d319c555593be5c6d0bd08bb4 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 24 Nov 2003 16:38:46 +0000 Subject: [PATCH] * Bug fix. Hmm, I thought I'd fixed this before :-| --- corepkgs/nar/unnar.sh.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/corepkgs/nar/unnar.sh.in b/corepkgs/nar/unnar.sh.in index 3081356497..b0b6f9d468 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