Skip to content

Commit

Permalink
build: generate step doesn't require internet
Browse files Browse the repository at this point in the history
  • Loading branch information
rockorager committed Aug 8, 2024
1 parent 4635734 commit e82724d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub fn build(b: *std.Build) void {
const test_step = b.step("test", "Run unit tests");
test_step.dependOn(&run_lib_unit_tests.step);

const gen_step = b.step("generate", "Update timezone names (requires an internet connection)");
const gen_step = b.step("generate", "Update timezone names");
const gen = b.addExecutable(.{
.name = "generate",
.root_source_file = b.path("gen/main.zig"),
Expand Down

0 comments on commit e82724d

Please sign in to comment.