From 0f0c6618a0ceb000e3909a8dcc0ec921d0d993f6 Mon Sep 17 00:00:00 2001 From: jregan Date: Mon, 11 Nov 2019 10:57:35 -0800 Subject: [PATCH] A pseudo main to make goreleaser happier. --- pseudo/k8s/main.go | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pseudo/k8s/main.go diff --git a/pseudo/k8s/main.go b/pseudo/k8s/main.go new file mode 100644 index 000000000..941b42eff --- /dev/null +++ b/pseudo/k8s/main.go @@ -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`) +}