(ctx context.Context)
| 8 | ) |
| 9 | |
| 10 | func FlagRemoteAutoComplete(ctx context.Context) bool { |
| 11 | if dir, ok := utils.DetectGit(); ok { |
| 12 | remoteNames := utils.ScalingoRepoAutoComplete(ctx, dir) |
| 13 | for _, name := range remoteNames { |
| 14 | fmt.Println(name) |
| 15 | } |
| 16 | } else { |
| 17 | return false |
| 18 | } |
| 19 | return true |
| 20 | } |
no test coverage detected