diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-07-16T20·49+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-07-16T20·49+0000 |
commit | 335aa1c35d8835619b465df3f5629b435bac157d (patch) | |
tree | e531d27b6e9d7ddac46ebc745a984871015685a7 | |
parent | 6822fd7bf472c9edc27c0e851f3efd67c2a99952 (diff) |
* Doh!
-rw-r--r-- | corepkgs/nar/unnar.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/corepkgs/nar/unnar.sh b/corepkgs/nar/unnar.sh index 01b6a3ebe475..cc21efb2b7dc 100644 --- a/corepkgs/nar/unnar.sh +++ b/corepkgs/nar/unnar.sh @@ -1,3 +1,4 @@ #! /bin/sh -bunzip2 < $nar | /tmp/nix/bin/nix --restore "$out" || exit 1 +echo "unpacking $nar to $out..." +bunzip2 < $nar | /nix/bin/nix --restore "$out" || exit 1 |