Skip to content

Commit 93a0823

Browse files
authored
Merge pull request #4559 from freddyesteban/master
🐛 Fix kubebuild alpha generate when not in GOPATH
2 parents f7b802c + c557168 commit 93a0823

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pkg/cli/alpha/internal/generate.go

+3
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,9 @@ func getInitArgs(store store.Store) []string {
262262
if domain := store.Config().GetDomain(); domain != "" {
263263
args = append(args, "--domain", domain)
264264
}
265+
if repo := store.Config().GetRepository(); repo != "" {
266+
args = append(args, "--repo", repo)
267+
}
265268
return args
266269
}
267270

0 commit comments

Comments
 (0)