From a03fee465b6463518da60d7df8417c7bfd29152b Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 23 Jul 2023 15:51:13 -0700 Subject: [PATCH] build: include README.md in release tarballs --- build.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/build.zig b/build.zig index a6a04e2209..da93831aef 100644 --- a/build.zig +++ b/build.zig @@ -71,6 +71,7 @@ pub fn build(b: *std.Build) !void { if (flat) { b.installFile("LICENSE", "LICENSE"); + b.installFile("README.md", "README.md"); } const langref_step = b.step("langref", "Build and install the language reference");