zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit a03fee465b6463518da60d7df8417c7bfd29152b (tree)
parent 9ada2f887c932b259c02a6a4b4cee4f136e26678
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Sun, 23 Jul 2023 15:51:13 -0700

build: include README.md in release tarballs

Diffstat:
Mbuild.zig | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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");