From 415045543f612fc591a71b561655157d51c97545 Mon Sep 17 00:00:00 2001 From: juancwu Date: Mon, 2 Feb 2026 15:25:26 +0000 Subject: [PATCH] fix: remove extra clone log --- main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.go b/main.go index 942de99..d5d0930 100644 --- a/main.go +++ b/main.go @@ -91,8 +91,6 @@ func cloneRepo(url, targetDir string) error { return nil } - fmt.Printf("Cloning into: %s\n", targetDir) - cmd := exec.Command("git", "clone", url, targetDir) // Pipe git output directly to the user's terminal cmd.Stdout = os.Stdout