mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-11 00:52:55 +00:00
19 lines
292 B
Go
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)
|
|
}
|