(s *string)
| 1254 | } |
| 1255 | |
| 1256 | func fromStringPtr(s *string) string { |
| 1257 | if s == nil { |
| 1258 | return "" |
| 1259 | } |
| 1260 | return *s |
| 1261 | } |
| 1262 | |
| 1263 | func mirrorGitRepo(ctx context.Context, srcGitRemote, destGitRemote, srcToken, destToken string) error { |
| 1264 | gitPath, err := os.MkdirTemp(os.TempDir(), "projects") |
no outgoing calls
no test coverage detected