commit 5a235be8ff45c89c24038890d383ff3bc14575fb
Author: tri <tri@thac.loan>
Date:   Mon Sep 29 12:24:34 2025 +0700

    don't print readme path

diff --git a/src/main.zig b/src/main.zig
index bcc565e..dedef28 100644
--- a/src/main.zig
+++ b/src/main.zig
@@ -264,7 +264,7 @@ pub fn writeRepoPage(args: RepoArgs) !void {
 
     // If there's a readme file, include it in repo index:
     if (try git.findReadme(arena, in_repo_dir)) |readme_path| {
-        println("   {s}", .{readme_path});
+        //println("   {s}", .{readme_path});
         const readme_content = try git.readFileAlloc(arena, in_repo_dir, readme_path);
 
         try writer.interface.print(