diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-11-16T16·25+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-11-16T16·25+0000 |
commit | d7d7910ba48d898bda2db92a4f16a6179c855f7d (patch) | |
tree | 74ac78c9e7334d2ac388feb97d67c2c2213e5335 /scripts | |
parent | 63ee5e4d2a46c3619c59307d7dbb08f25d32c3e8 (diff) |
* Don't decompress the manifests in /nix/var/nix/manifest. This saves
disk space, and, since they're typically only decompressed once (to fill the manifest cache), doesn't make things slower.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/nix-pull.in | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/scripts/nix-pull.in b/scripts/nix-pull.in index f3cba0c02619..d8352b2774bb 100755 --- a/scripts/nix-pull.in +++ b/scripts/nix-pull.in @@ -59,16 +59,7 @@ sub processURL { # First see if a bzipped manifest is available. if (system("$Nix::Config::curl --fail --silent --head '$url'.bz2 > /dev/null") == 0) { print "fetching list of Nix archives at `$url.bz2'...\n"; - my $bzipped = downloadFile "$url.bz2"; - - $manifest = "$tmpDir/MANIFEST"; - - system("$Nix::Config::bzip2 -d < $bzipped > $manifest") == 0 - or die "cannot decompress manifest"; - - $manifest = (`$Nix::Config::binDir/nix-store --add $manifest` - or die "cannot copy $manifest to the store"); - chomp $manifest; + $manifest = downloadFile "$url.bz2"; } # Otherwise, just get the uncompressed manifest. |