Files
kustomize/kustomize/main.go
2023-02-01 19:01:08 -05: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/v5/commands"
)
func main() {
if err := commands.NewDefaultCommand().Execute(); err != nil {
os.Exit(1)
}
os.Exit(0)
}