diff --git a/pkg/pkg.go b/pkg/pkg.go index a5ee0170..c3dd27b4 100644 --- a/pkg/pkg.go +++ b/pkg/pkg.go @@ -122,6 +122,11 @@ func extractModules(dest string) error { return nil } + // Do not vendor the package's `cue.mod/pkg` + if strings.Contains(p, "cue.mod/pkg") { + return nil + } + contents, err := fs.ReadFile(FS, p) if err != nil { return fmt.Errorf("%s: %w", p, err)