File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ func Run() {
5555 c , err := cli .New (
5656 cli .WithCommandName ("kubebuilder" ),
5757 cli .WithVersion (versionString ()),
58- cli .WithCliVersion (GetKubebuilderVersion ()),
58+ cli .WithCliVersion (getKubebuilderVersion ()),
5959 cli .WithPlugins (
6060 golangv4.Plugin {},
6161 gov4Bundle ,
Original file line number Diff line number Diff line change @@ -63,8 +63,8 @@ func versionString() string {
6363 })
6464}
6565
66- // GetKubebuilderVersion returns only the CLI version string
67- func GetKubebuilderVersion () string {
66+ // getKubebuilderVersion returns only the CLI version string
67+ func getKubebuilderVersion () string {
6868 if kubeBuilderVersion == unknown {
6969 if info , ok := debug .ReadBuildInfo (); ok && info .Main .Version != "" {
7070 kubeBuilderVersion = info .Main .Version
You can’t perform that action at this time.
0 commit comments