Skip to content

Commit

Permalink
Add build.zig to paths
Browse files Browse the repository at this point in the history
Without this, the package manager will not include build.zig in the
fetched package, leading to the resulting package being unusable.

See ziglang/zig#18282
  • Loading branch information
ianprime0509 committed Dec 15, 2023
1 parent 53a7e95 commit ddf4959
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.{
.name = "zig-cli",
.version = "0.8.0",
.paths = .{"./src", "./build.zig.zon"},
.paths = .{"./src", "./build.zig", "./build.zig.zon"},
}

0 comments on commit ddf4959

Please sign in to comment.