srctree

Luis Cáceres parent 40550228 29e41c68
std.Build: dupe provided paths for Step.Fmt.create()

inlinesplit
lib/std/Build/Step/Fmt.zig added: 3, removed: 3, total 0
@@ -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;