Build: enables deployment of enterprise msi (#21607)

This commit is contained in:
Leonard Gram 2020-01-20 09:26:27 +01:00 committed by GitHub
parent cc2586d250
commit b2c235c46d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,14 +44,6 @@ func main() {
if enterprise { if enterprise {
product = "grafana-enterprise" product = "grafana-enterprise"
baseURL = createBaseURL(archiveProviderRoot, "enterprise", product, nightly) baseURL = createBaseURL(archiveProviderRoot, "enterprise", product, nightly)
var err error
buildArtifacts, err = filterBuildArtifacts(completeBuildArtifactConfigurations, Remove, []artifactFilter{
{os: "win-installer", arch: "amd64"},
})
if err != nil {
log.Fatalf("Could not filter to the selected build artifacts, err=%v", err)
}
} else { } else {
product = "grafana" product = "grafana"