Skip to content

Commit

Permalink
fix: arg count
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Berezovskyi <andriib@kth.se>
  • Loading branch information
berezovskyi committed Jul 17, 2023
1 parent 47ffa1f commit 64506a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion publisher.zig
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ fn pushRepoChange(log_repo_path: []const u8) !void {
std.log.info("Sleeping for {} min between pushes", .{sleep_min});
std.time.sleep(@as(u64, sleep_min * 60) * std.time.ns_per_s);
// Logging due to https://github.com/ziglang/zig/blob/c6aa29b6fdba1606bfd218b17de89f64179c0ed8/lib/std/time.zig#L10
std.log.info("Wakeup", .{sleep_min});
std.log.info("Wakeup", .{});
}

fn formatRepoLogFilename(buf: []u8, year_day: epoch.YearAndDay, month_day: epoch.MonthAndDay) usize {
Expand Down

0 comments on commit 64506a4

Please sign in to comment.