mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-29 17:41:13 +00:00
18 lines
322 B
Go
18 lines
322 B
Go
// Copyright 2021 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package build
|
|
|
|
import (
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
func AddFlagOutputPath(set *pflag.FlagSet) {
|
|
set.StringVarP(
|
|
&theFlags.outputPath,
|
|
"output",
|
|
"o", // abbreviation
|
|
"", // default
|
|
"If specified, write output to this path.")
|
|
}
|