* Compress Nix archives when pushing them.
This commit is contained in:
parent
9bcc31c941
commit
822c072cfa
4 changed files with 7 additions and 5 deletions
|
@ -33,7 +33,7 @@ foreach my $hash (@ARGV) {
|
|||
if ($path =~ /-s-([0-9a-z]{32}).nix$/) {
|
||||
$name = "$name-s-$1";
|
||||
}
|
||||
$name = $name . ".nar";
|
||||
$name = $name . ".nar.bz2";
|
||||
|
||||
# Construct a Fix expression that creates a Nix archive.
|
||||
my $fixexpr =
|
||||
|
@ -65,4 +65,6 @@ foreach my $hash (@ARGV) {
|
|||
}
|
||||
|
||||
# Push the prebuilts to the server. !!! FIXME
|
||||
system "rsync -av -e ssh @pushlist eelco\@losser.st-lab.cs.uu.nl:/home/eelco/public_html/nix-dist/";
|
||||
if (scalar @pushlist > 0) {
|
||||
system "rsync -av -e ssh @pushlist eelco\@losser.st-lab.cs.uu.nl:/home/eelco/public_html/nix-dist/";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue