forked from lix-project/hydra
Merge pull request #536 from phile314-fh/master
[ Fix #531 ] Trim github pr plugin store paths.
This commit is contained in:
commit
028ecf7c1f
|
@ -56,8 +56,8 @@ sub fetchInput {
|
|||
print $fh encode_json \%pulls;
|
||||
close $fh;
|
||||
system("jq -S . < $filename > $tempdir/github-pulls-sorted.json");
|
||||
my $storePath = `nix-store --add "$tempdir/github-pulls-sorted.json"`
|
||||
or die "cannot copy path $filename to the Nix store.\n";
|
||||
my $storePath = trim(`nix-store --add "$tempdir/github-pulls-sorted.json"`
|
||||
or die "cannot copy path $filename to the Nix store.\n");
|
||||
my $timestamp = time;
|
||||
return { storePath => $storePath, revision => strftime "%Y%m%d%H%M%S", gmtime($timestamp) };
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue