[ Fix #531 ] Trim github pr plugin store paths.

nix-store --add returns a trailing LF which caused wrong include
paths for the github PR plugin JSON input.
This commit is contained in:
Philipp Hausmann 2018-02-12 17:59:56 +01:00
parent ae080615d1
commit 3cf2ffe367

View file

@ -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) };
}