From f53e350bffd4178c2abba20e92c82f45722e7e7a Mon Sep 17 00:00:00 2001 From: Igor Dejanovic Date: Tue, 4 Jun 2024 21:54:30 +0200 Subject: [PATCH] docs: don't run latex image build from nix build It is run from mbook build as a preprocessor to be also run during `mdbook serve docs` on each input change. --- docs/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/default.nix b/docs/default.nix index d987027c..4a9fab6b 100644 --- a/docs/default.nix +++ b/docs/default.nix @@ -24,12 +24,10 @@ let inherit buildInputs; buildPhase = '' - cd docs - ./build-latex-images.sh - mdbook build + mdbook build docs ''; installPhase = '' - mv book $out + mv docs/book $out ''; }; in