Merge pull request #1773 from monopole/pseudoMain

A pseudo main to make goreleaser happier.
This commit is contained in:
Jeff Regan
2019-11-11 10:59:46 -08:00
committed by GitHub

17
pseudo/k8s/main.go Normal file
View File

@@ -0,0 +1,17 @@
// Copyright 2019 The Kubernetes Authors.
// SPDX-License-Identifier: Apache-2.0
// A dummy main to help with releasing the pseudo/k8s module.
package main
import (
"fmt"
)
// TODO: delete this when we find a better way to generate release notes.
func main() {
fmt.Println(`
This 'main' exists to help goreleaser create release notes for the pseudo/k8s module.
See https://github.com/goreleaser/goreleaser/issues/981
and https://github.com/kubernetes-sigs/kustomize/tree/master/releasing`)
}