authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-08-28 12:58:13 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-08-28 12:58:13 -07:00
log5de4847c6cbeb8624ee54e144813356bcc44bae0
treefe0c5cca3bb44727a7a2f7a1f0bd39ed3ff78419
parent618dfb843dd2787a7382f816d9c2768cfff7872a

build.zig- version option is supposed to be called tag


1 files changed, 1 insertions(+), 1 deletions(-)

build.zig+1-1
......@@ -19,7 +19,7 @@ pub fn build(b: *std.build.Builder) void {
1919
2020 const exe_options = b.addOptions();
2121 exe.addOptions("build_options", exe_options);
22 exe_options.addOption([]const u8, "version", b.option([]const u8, "version", "") orelse "dev");
22 exe_options.addOption([]const u8, "version", b.option([]const u8, "tag", "") orelse "dev");
2323 exe_options.addOption(bool, "bootstrap", bootstrap != null);
2424
2525 if (bootstrap != null) {