fix: remove extra clone log

This commit is contained in:
juancwu 2026-02-02 15:25:26 +00:00
commit 415045543f

View file

@ -91,8 +91,6 @@ func cloneRepo(url, targetDir string) error {
return nil return nil
} }
fmt.Printf("Cloning into: %s\n", targetDir)
cmd := exec.Command("git", "clone", url, targetDir) cmd := exec.Command("git", "clone", url, targetDir)
// Pipe git output directly to the user's terminal // Pipe git output directly to the user's terminal
cmd.Stdout = os.Stdout cmd.Stdout = os.Stdout