Skip to content

Commit

Permalink
enabling fields for UpstreamOptions
Browse files Browse the repository at this point in the history
These fields were already present but not being used.
  • Loading branch information
nicholasSUSE committed Nov 5, 2024
1 parent 5a2fc96 commit c184297
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkg/puller/gitrepository.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,10 @@ func (r GithubRepository) Pull(rootFs, fs billy.Filesystem, path string) error {
// GetOptions returns the path used to construct this upstream
func (r GithubRepository) GetOptions() options.UpstreamOptions {
return options.UpstreamOptions{
URL: r.GetHTTPSURL(),
Subdirectory: r.Subdirectory,
Commit: r.Commit,
URL: r.GetHTTPSURL(),
Subdirectory: r.Subdirectory,
Commit: r.Commit,
ChartRepoBranch: r.branch,
}
}

Expand Down

0 comments on commit c184297

Please sign in to comment.