forked from lix-project/hydra
* Set mtime to 0 to ensure that the generate tar file doesn't change
between invocations.
This commit is contained in:
parent
8c7eb165c9
commit
187da72ecd
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ sub process {
|
||||||
$res .= "]\n";
|
$res .= "]\n";
|
||||||
|
|
||||||
my $tar = Archive::Tar->new;
|
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 $tardata = $tar->write;
|
||||||
my $bzip2data;
|
my $bzip2data;
|
||||||
|
|
Loading…
Reference in a new issue