diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-11-24T16·38+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-11-24T16·38+0000 |
commit | d1d87badf6d07c9d319c555593be5c6d0bd08bb4 (patch) | |
tree | 07ee994e2cad415e947a9ff0b1ee62ce59bb9487 /corepkgs/nar | |
parent | 604c45e960f27be9e26e44dbc85fa0f00a097670 (diff) |
* Bug fix. Hmm, I thought I'd fixed this before :-|
Diffstat (limited to 'corepkgs/nar')
-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 |