* Set mtime to 0 to ensure that the generate tar file doesn't change

between invocations.
This commit is contained in:
Eelco Dolstra 2009-03-03 14:06:05 +00:00
parent 8c7eb165c9
commit 187da72ecd

View file

@ -42,7 +42,7 @@ sub process {
$res .= "]\n";
my $tar = Archive::Tar->new;
$tar->add_data("channel/default.nix", $res);
$tar->add_data("channel/default.nix", $res, {mtime => 0});
my $tardata = $tar->write;
my $bzip2data;