fixed variable declaration by changing it to a const, since it's never mutated

This commit is contained in:
Zev Averbach 2023-11-21 12:00:34 +01:00
parent f29c0692d5
commit 063a74c59a

View file

@ -288,7 +288,7 @@ const ZiglingStep = struct {
// Allow up to 1 MB of stdout capture.
const max_output_bytes = 1 * 1024 * 1024;
var result = Child.run(.{
const result = Child.run(.{
.allocator = b.allocator,
.argv = &.{exe_path},
.cwd = b.build_root.path.?,