Skip to content

Commit dae6766

Browse files
committed
Update coverage report path
1 parent 4289052 commit dae6766

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

haskell-miso.org/nix/nginx.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ with (import ../../default.nix {});
4141
enableACME = true;
4242
locations = {
4343
"/" = {
44-
root = pkgs.coverage;
44+
root = "${pkgs.coverage}/coverage";
4545
};
4646
};
4747
};

nix/overlay.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ options: self: super: {
3030
name = "coverage";
3131
src = ../coverage;
3232
buildCommand = ''
33-
mkdir -p $out
34-
cp -rv $src $out
33+
mkdir -p $out/report
34+
cp -rv $src $out/report
3535
'';
3636
};
3737

0 commit comments

Comments
 (0)