()
| 17 | ) |
| 18 | |
| 19 | func checkHasGitClient() { |
| 20 | command := exec.Command("where", "git") |
| 21 | _, err := command.Output() |
| 22 | if err != nil { |
| 23 | msg.Die("Git.exe not found in path") |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | func CloneCacheNative(dep models.Dependency) *git2.Repository { |
| 28 | msg.Info("Downloading dependency %s", dep.Repository) |
no test coverage detected