GetPlatformString exists solely for the purposes of mocking it out for command-layers tests.
(runtimeGOOS string, runtimeGOARCH string)
| 56 | |
| 57 | // GetPlatformString exists solely for the purposes of mocking it out for command-layers tests. |
| 58 | func (actor Actor) GetPlatformString(runtimeGOOS string, runtimeGOARCH string) string { |
| 59 | return generic.GeneratePlatform(runtime.GOOS, runtime.GOARCH) |
| 60 | } |
| 61 | |
| 62 | // getPluginInfoFromRepositoryForPlatform returns the plugin info, if found, from |
| 63 | // the specified repository for the specified platform. |
nothing calls this directly
no test coverage detected