diff options
| author | Carl Åstholm <carl@astholm.se> | 2024-03-03 20:20:25 +0100 |
|---|---|---|
| committer | Carl Åstholm <carl@astholm.se> | 2024-04-07 15:34:47 +0200 |
| commit | 8ce3a8b6041d2dd2eea1e9fcb55bc9d602469667 (patch) | |
| tree | d3bbb9e6613cc3c80518d4e26bf943e7ddc4524e /lib/std/Build/Step/WriteFile.zig | |
| parent | 27c8f895ebeed9f124d32f6a96eaea92e06825bb (diff) | |
| download | zig-8ce3a8b6041d2dd2eea1e9fcb55bc9d602469667.tar.gz zig-8ce3a8b6041d2dd2eea1e9fcb55bc9d602469667.zip | |
`WriteFile.addCopyDirectory` should include all files by default
Diffstat (limited to 'lib/std/Build/Step/WriteFile.zig')
| -rw-r--r-- | lib/std/Build/Step/WriteFile.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/Build/Step/WriteFile.zig b/lib/std/Build/Step/WriteFile.zig index 2ed7b1344c..f0ff6cfa70 100644 --- a/lib/std/Build/Step/WriteFile.zig +++ b/lib/std/Build/Step/WriteFile.zig @@ -47,7 +47,7 @@ pub const Directory = struct { /// Only file paths that end in any of these suffixes will be included in copying. /// `null` means that all suffixes will be included. /// `exclude_extensions` takes precedence over `include_extensions`. - include_extensions: ?[]const []const u8 = &.{".h"}, + include_extensions: ?[]const []const u8 = null, pub fn dupe(self: Options, b: *std.Build) Options { return .{ |
