This commit is contained in:
cdle 2021-08-21 17:36:49 +08:00
parent a6029cff43
commit 1fa8dfba52

View File

@ -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())
}