()
| 95 | } |
| 96 | |
| 97 | func (b BuildConfig) buildTarget() string { |
| 98 | systemName := strings.ToLower(b.Ctx.Platform().GetToolchain().GetSystemName()) |
| 99 | if !slices.Contains([]string{"windows", "linux", "darwin"}, systemName) { |
| 100 | return runtime.GOOS |
| 101 | } |
| 102 | return systemName |
| 103 | } |
no test coverage detected