diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-07-15 20:35:34 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-07-15 20:35:34 -0400 |
| commit | aff90c22520bbbadd56fbfd1378f161ee8a3cdb2 (patch) | |
| tree | 861e410b0003f8596464779230413e577cc312b1 /build.zig | |
| parent | eaf545e24c009e308b9463d3c521c28621477b8f (diff) | |
| download | zig-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.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |
