diff options
author | pacien | 2022-12-01 15:17:02 +0100 |
---|---|---|
committer | pacien | 2022-12-01 15:17:02 +0100 |
commit | b7b67a6ec52a31ac75a2b49b63e00c9bbb48e323 (patch) | |
tree | 56eb620c70c6f57666f1ef408c7d552fc737c4d1 | |
parent | 09a9741fc797f174f3ce64ede8501f1668fa6641 (diff) | |
download | markdown-course-website-b7b67a6ec52a31ac75a2b49b63e00c9bbb48e323.tar.gz |
flake: use current working dir for quarto's deno cache
`/build` doesn't seem to work on the Eiffel GitLab CI.
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ | |||
24 | src = ./.; | 24 | src = ./.; |
25 | nativeBuildInputs = [ quarto ]; | 25 | nativeBuildInputs = [ quarto ]; |
26 | buildPhase = '' | 26 | buildPhase = '' |
27 | export HOME=/build | 27 | export HOME=$PWD |
28 | ${options} quarto render | 28 | ${options} quarto render |
29 | ''; | 29 | ''; |
30 | installPhase = '' | 30 | installPhase = '' |