Skip to content

Commit c335da5

Browse files
committed
fix typo
1 parent f40b831 commit c335da5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
# Set the version file from the current checkout tag (just when a tag is pushed and this workflow is triggered)
2525
run: |
2626
echo -n $(git describe --tags --abbrev=0) > cmd/kuberoCli/version/CLI_VERSION
27+
echo -n $(git describe --tags --abbrev=0) > pkg/kuberoApi/VERSION
2728
-
2829
name: Set up Go
2930
uses: actions/setup-go@v3

cmd/kuberoCli/install.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ func installKuberoUi() {
531531
)
532532

533533
if gitops == "y" {
534-
534+
535535
githubConfigure := promptLine("Configure Github", "[y,n]", "n")
536536
githubPersonalAccessToken := ""
537537
if githubConfigure == "y" {
@@ -657,8 +657,8 @@ func installKuberoUi() {
657657
kuberoUIRegistryHost := promptLine("Registry", "[registry.kubero.mydomain.com]", "")
658658
kuberoUIConfig.Spec.Registry.Host = kuberoUIRegistryHost
659659

660-
kuberoUIRegistrySubpath := promptLine("Subpath (optional) ", "[example/foo/bar]", "")
661-
kuberoUIConfig.Spec.Registry.Subpath = kuberoUIRegistrySubpath
660+
kuberoUIRegistrySubPath := promptLine("Subpath (optional) ", "[example/foo/bar]", "")
661+
kuberoUIConfig.Spec.Registry.SubPath = kuberoUIRegistrySubPath
662662

663663
kuberoUIConfig.Spec.Registry.Port = 443
664664

0 commit comments

Comments
 (0)