Skip to content

Commit

Permalink
Merge pull request #4559 from freddyesteban/master
Browse files Browse the repository at this point in the history
🐛 Fix kubebuild alpha generate when not in GOPATH
  • Loading branch information
k8s-ci-robot authored Feb 13, 2025
2 parents f7b802c + c557168 commit 93a0823
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/cli/alpha/internal/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,9 @@ func getInitArgs(store store.Store) []string {
if domain := store.Config().GetDomain(); domain != "" {
args = append(args, "--domain", domain)
}
if repo := store.Config().GetRepository(); repo != "" {
args = append(args, "--repo", repo)
}
return args
}

Expand Down

0 comments on commit 93a0823

Please sign in to comment.