mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
std.Build: dupe provided paths for Step.Fmt.create()
This commit is contained in:
parent
405502286d
commit
29e41c6850
1 changed files with 2 additions and 2 deletions
|
|
@ -29,8 +29,8 @@ pub fn create(owner: *std.Build, options: Options) *Fmt {
|
|||
.owner = owner,
|
||||
.makeFn = make,
|
||||
}),
|
||||
.paths = options.paths,
|
||||
.exclude_paths = options.exclude_paths,
|
||||
.paths = owner.dupeStrings(options.paths),
|
||||
.exclude_paths = owner.dupeStrings(options.exclude_paths),
|
||||
.check = options.check,
|
||||
};
|
||||
return self;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue