From fb8ab7a5749a90e0e4ae69666ab355e4e4584c81 Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Thu, 18 Feb 2010 15:09:13 +0000 Subject: [PATCH] * hydra: download closure now makes closure of outpath in stead of useless drvpath --- src/lib/Hydra/Controller/Build.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/Hydra/Controller/Build.pm b/src/lib/Hydra/Controller/Build.pm index 16714155..0e0471ee 100644 --- a/src/lib/Hydra/Controller/Build.pm +++ b/src/lib/Hydra/Controller/Build.pm @@ -330,7 +330,7 @@ sub nix : Chained('build') PathPart('nix') CaptureArgs(0) { notFound($c, "Path " . $build->outpath . " is no longer available.") unless isValidPath($build->outpath); - $c->stash->{storePaths} = [$build->drvpath]; + $c->stash->{storePaths} = [$build->outpath]; my $pkgName = $build->nixname . "-" . $build->system; $c->stash->{nixPkgs} = {"${pkgName}.nixpkg" => {build => $build, name => $pkgName}};