core: fix build with Null backend

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2024-08-25 11:52:36 -07:00
parent 4c8fbb2bf0
commit c2767b4e01
2 changed files with 5 additions and 3 deletions

View file

@ -261,7 +261,7 @@ pub fn build(b: *std.Build) !void {
.install_subdir = "docs",
});
const docs_step = b.step("docs", "Generate docs");
docs_step.dependOn(&install_docs.step);
docs_step.dependOn(&install_docs.step);
}
}