fix(generator): fixup package comment linting error

Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
pull/6577/head
Matthew Fisher 5 years ago
parent e5edbbee2e
commit caff38ffa1
No known key found for this signature in database
GPG Key ID: 92AA783CBAAE8E3B

@ -4,7 +4,7 @@ jobs:
working_directory: /go/src/k8s.io/helm working_directory: /go/src/k8s.io/helm
parallelism: 3 parallelism: 3
docker: docker:
- image: golang:1.13.0 - image: golang:1.13.1
environment: environment:
PROJECT_NAME: "kubernetes-helm" PROJECT_NAME: "kubernetes-helm"
steps: steps:

@ -1,6 +1,6 @@
DOCKER_REGISTRY ?= gcr.io DOCKER_REGISTRY ?= gcr.io
IMAGE_PREFIX ?= kubernetes-helm IMAGE_PREFIX ?= kubernetes-helm
DEV_IMAGE ?= golang:1.13.0 DEV_IMAGE ?= golang:1.13.1
SHORT_NAME ?= tiller SHORT_NAME ?= tiller
SHORT_NAME_RUDDER ?= rudder SHORT_NAME_RUDDER ?= rudder
TARGETS ?= darwin/amd64 linux/amd64 linux/386 linux/arm linux/arm64 linux/ppc64le linux/s390x windows/amd64 TARGETS ?= darwin/amd64 linux/amd64 linux/386 linux/arm linux/arm64 linux/ppc64le linux/s390x windows/amd64

@ -13,6 +13,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
// Code generated by capabilities_default_versions_generate.go; DO NOT EDIT. // Code generated by capabilities_default_versions_generate.go; DO NOT EDIT.
package chartutil package chartutil
func defaultVersions() []string { func defaultVersions() []string {

@ -60,7 +60,7 @@ func createOutput(v []string) []byte {
var out bytes.Buffer var out bytes.Buffer
fmt.Fprintln(&out, licenseHeader) fmt.Fprintln(&out, licenseHeader)
fmt.Fprintln(&out, "// Code generated by capabilities_default_versions_generate.go; DO NOT EDIT.") fmt.Fprint(&out, "// Code generated by capabilities_default_versions_generate.go; DO NOT EDIT.\n\n")
fmt.Fprint(&out, "package chartutil\n\n") fmt.Fprint(&out, "package chartutil\n\n")
fmt.Fprintln(&out, "func defaultVersions() []string {") fmt.Fprintln(&out, "func defaultVersions() []string {")
fmt.Fprintln(&out, "\treturn []string{") fmt.Fprintln(&out, "\treturn []string{")

Loading…
Cancel
Save