Zig Version
0.14.0
Steps to Reproduce and Observed Behavior
- Remove a non-code file (like LICENSE or README) from the project, but not from
build.zig.zon's .paths.
- Run
zig build ....
- It successfully compiles the program.
Expected Behavior
Compiler should warn the developer about missing paths in .paths or emit an error.
I have no idea how zig build|fetch acts if a file is missing in the remote dependency, but if one's developing such a library, they must be sure themselves that their library will not break other's builds.
Zig Version
0.14.0
Steps to Reproduce and Observed Behavior
build.zig.zon's .paths.zig build ....Expected Behavior
Compiler should warn the developer about missing paths in .paths or emit an error.
I have no idea how
zig build|fetchacts if a file is missing in the remote dependency, but if one's developing such a library, they must be sure themselves that their library will not break other's builds.