diff --git a/models/repos.go b/models/repos.go index 098709b..f11a36e 100644 --- a/models/repos.go +++ b/models/repos.go @@ -42,5 +42,6 @@ func initRepos() { func (rp *Repo) gitClone() { cmd := exec.Command("sh", "-c", fmt.Sprintf("git clone %s %s", rp.Git, rp.filename)) cmd.Path = reposPath - cmd.Output() + fmt.Println("sh", "-c", fmt.Sprintf("git clone %s %s", rp.Git, rp.filename)) + fmt.Println(cmd.Output()) }