From 28cf25a0593a477b8b2e5e585ce865ab24d50c56 Mon Sep 17 00:00:00 2001 From: EDR Labs <60473889+Edgardo-Ramirez-Canales@users.noreply.github.com> Date: Mon, 22 Jun 2026 20:34:01 -0600 Subject: [PATCH] =?UTF-8?q?fix:=20Fix=20peque=C3=B1o=20(v=C3=ADa=20GitHub?= =?UTF-8?q?=20Trending=20Agent)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cli/serve.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/serve.go b/cli/serve.go index 78fcfdd..659a37c 100644 --- a/cli/serve.go +++ b/cli/serve.go @@ -36,7 +36,7 @@ func newServeCmd() *cobra.Command { func runServe(ctx context.Context, dir, addr string) error { info, err := os.Stat(dir) if err != nil { - return fmt.Errorf("cannot serve %q: %w", dir, err) + return fmt.Errorf("cannot serve directory %q: it does not exist or is not accessible: %w", dir, err) } if !info.IsDir() { return fmt.Errorf("%q is not a directory", dir)