diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-03-20 13:13:57 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2023-03-20 13:13:57 +0100 |
commit | 658847179a8aca5df3ad6645996f9fc5775df447 (patch) | |
tree | bd6142d63a0e403336954b16550c2e53d62341b4 | |
parent | e37f436eb469a4ad73b3d6ab21726fcc2975f31d (diff) |
Fix internal-api rendering in Hydra
Currently it gives a 500 error with "Do not know how to serve path
'/nix/store/bym5sm8z2wpavnvzancb9gjdlgyzs1l8-nix-internal-api-docs-2.15.0pre20230320_e37f436/share/doc/nix/internal-api'."
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -566,7 +566,7 @@ postInstall = '' mkdir -p $out/nix-support - echo "doc internal-api-docs $out/share/doc/nix/internal-api" >> $out/nix-support/hydra-build-products + echo "doc internal-api-docs $out/share/doc/nix/internal-api/html" >> $out/nix-support/hydra-build-products ''; }; |