1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-02 21:51:50 +02:00

* Compress Nix archives when pushing them.

This commit is contained in:
Eelco Dolstra 2003-07-10 20:34:29 +00:00
parent 9bcc31c941
commit 822c072cfa
4 changed files with 7 additions and 5 deletions

View file

@ -31,7 +31,7 @@ while (<CONFFILE>) {
my $fn = $1;
next if $fn =~ /\.\./;
next if $fn =~ /\//;
next unless $fn =~ /-([0-9a-z]{32})(-s-([0-9a-z]{32}))?\.nar/;
next unless $fn =~ /-([0-9a-z]{32})(-s-([0-9a-z]{32}))?\.nar.bz2$/;
my $hash = $1;
my $fshash = $3;