diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-09-04T15·38+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-09-04T15·38+0000 |
commit | 9441550acb34cf35f6cd3859d3672adca79551d9 (patch) | |
tree | 9a6cc5ec0f3011841923a93d50035ae7ddbdf9d1 /scripts/nix-push.in | |
parent | 7b20c0ed4b3ef518c1f55bfbb2ece932539f35ea (diff) |
* nix-push / generate-patches: bzip the manifest.
Diffstat (limited to 'scripts/nix-push.in')
-rw-r--r-- | scripts/nix-push.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/nix-push.in b/scripts/nix-push.in index 992622fbb4ca..dd00841d7d04 100644 --- a/scripts/nix-push.in +++ b/scripts/nix-push.in @@ -264,8 +264,12 @@ foreach my $narArchive (@narArchives) { print STDERR "uploading manifest...\n"; if ($localCopy) { copyFile $manifest, $localManifestFile; + copyFile "$manifest.bz2", "$localManifestFile.bz2"; } else { system("$curl --show-error --upload-file " . "'$manifest' '$manifestPutURL' > /dev/null") == 0 or die "curl failed on $manifest: $?"; + system("$curl --show-error --upload-file " . + "'$manifest'.bz2 '$manifestPutURL'.bz2 > /dev/null") == 0 or + die "curl failed on $manifest: $?"; } |