Skip to content

Commit 6d63109

Browse files
committed
Fix assemble target
1 parent 0af3588 commit 6d63109

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ assembled_dir := $(build_dir)/assembled
6464
.PHONY: assemble
6565
assemble:
6666
$(MAKE) -C docker exported-rustdoc
67-
RUSTDOC_PATH=rustdoc \
68-
nix-shell $(book_dir)/shell.nix \
69-
--run '$(MAKE) build'
67+
cd $(book_dir) && \
68+
RUSTDOC_PATH=rustdoc \
69+
nix-shell --run '$(MAKE) build'
7070
rm -rf $(assembled_dir)
7171
mkdir -p $(dir $(assembled_dir))
7272
cp -r $(book_dir)/build $(assembled_dir)

0 commit comments

Comments
 (0)