forked from lix-project/hydra
Hydra/62 fix, broken nar download
This commit is contained in:
parent
7b1d87fde9
commit
f3f2c5683f
|
@ -188,7 +188,7 @@ sub end : ActionClass('RenderView') {
|
||||||
sub nar :Local :Args(1) {
|
sub nar :Local :Args(1) {
|
||||||
my ($self, $c, $path) = @_;
|
my ($self, $c, $path) = @_;
|
||||||
|
|
||||||
$path = ($ENV{NIX_STORE_DIR}."/$path" || "/nix/store/$path" );
|
$path = ($ENV{NIX_STORE_DIR} || "/nix/store")."/$path";
|
||||||
|
|
||||||
if (!isValidPath($path)) {
|
if (!isValidPath($path)) {
|
||||||
$c->response->status(410); # "Gone"
|
$c->response->status(410); # "Gone"
|
||||||
|
|
Loading…
Reference in a new issue