Files
kustomize/kustomize/main.go
2021-02-12 13:26:41 -08:00

19 lines
292 B
Go

// Copyright 2019 The Kubernetes Authors.
// SPDX-License-Identifier: Apache-2.0
// The kustomize CLI.
package main
import (
"os"
"sigs.k8s.io/kustomize/kustomize/v4/commands"
)
func main() {
if err := commands.NewDefaultCommand().Execute(); err != nil {
os.Exit(1)
}
os.Exit(0)
}