aboutsummaryrefslogtreecommitdiff
path: root/scripts/nix-push
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/nix-push')
-rw-r--r--scripts/nix-push6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/nix-push b/scripts/nix-push
index 248a3b917..bf30f3a49 100644
--- a/scripts/nix-push
+++ b/scripts/nix-push
@@ -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/";
+}