aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-07-15 20:35:34 -0400
committerAndrew Kelley <andrew@ziglang.org>2019-07-15 20:35:34 -0400
commitaff90c22520bbbadd56fbfd1378f161ee8a3cdb2 (patch)
tree861e410b0003f8596464779230413e577cc312b1 /build.zig
parenteaf545e24c009e308b9463d3c521c28621477b8f (diff)
downloadzig-aff90c22520bbbadd56fbfd1378f161ee8a3cdb2.tar.gz
zig-aff90c22520bbbadd56fbfd1378f161ee8a3cdb2.zip
avoid shipping junk files
I did a diff of the shipped file list with master branch and it looks good after this commit.
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index d6e365b02d..2cd0804894 100644
--- a/build.zig
+++ b/build.zig
@@ -91,7 +91,7 @@ pub fn build(b: *Builder) !void {
.source_dir = "std",
.install_dir = .Lib,
.install_subdir = "zig" ++ fs.path.sep_str ++ "std",
- .exclude_extensions = [_][]const u8{"test.zig"},
+ .exclude_extensions = [_][]const u8{ "test.zig", "README.md" },
});
const test_filter = b.option([]const u8, "test-filter", "Skip tests that do not match filter");