Skip to content

Commit

Permalink
fix: push alpha flag down to kustomize importer
Browse files Browse the repository at this point in the history
  • Loading branch information
jdockerty committed Aug 14, 2023
1 parent 329dd03 commit 4c9599e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/importer.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func MakeUniversalImporter(searchURLs []*url.URL, alpha bool) jsonnet.Importer {
t.RegisterProtocol("file", http.NewFileTransport(http.Dir("/")))
t.RegisterProtocol("internal", http.NewFileTransport(newInternalFS()))
t.RegisterProtocol("oci", newOCIImporter())
t.RegisterProtocol("kustomize+https", &kustomizeImporter{})
t.RegisterProtocol("kustomize+https", &kustomizeImporter{alpha: alpha})

return &universalImporter{
BaseSearchURLs: searchURLs,
Expand Down

0 comments on commit 4c9599e

Please sign in to comment.