(ctx context.Context)
| 28 | } |
| 29 | |
| 30 | func isGitCommandAvailable(ctx context.Context) bool { |
| 31 | _, err := command.Output(ctx, "", expand.ListEnviron(os.Environ()...), "git", "version") |
| 32 | return err == nil |
| 33 | } |
| 34 | |
| 35 | type CloneOptions struct { |
| 36 | URL string |
no test coverage detected