diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-07-10 20:34:29 +0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-07-10 20:34:29 +0000 |
commit | 822c072cfa0f1e4ac304343d78e024ba19da34a8 (patch) | |
tree | a47172b7a6c22b9b6d2655eca272f8a5eca1eb3b /corepkgs/nar/nar.sh | |
parent | 9bcc31c94168717c8bd27b83bfab686264f63745 (diff) |
* Compress Nix archives when pushing them.
Diffstat (limited to 'corepkgs/nar/nar.sh')
-rw-r--r-- | corepkgs/nar/nar.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/corepkgs/nar/nar.sh b/corepkgs/nar/nar.sh index 6ffcf6322..3dbeed029 100644 --- a/corepkgs/nar/nar.sh +++ b/corepkgs/nar/nar.sh @@ -1,3 +1,3 @@ #! /bin/sh -/tmp/nix/bin/nix --dump --file "$path" > $out || exit 1 +/tmp/nix/bin/nix --dump --file "$path" | bzip2 > $out || exit 1 |