diff --git a/internal/postprocessor/main.go b/internal/postprocessor/main.go index 13d429bba1a4..c8dfac1b92db 100644 --- a/internal/postprocessor/main.go +++ b/internal/postprocessor/main.go @@ -204,6 +204,8 @@ func (p *postProcessor) InitializeNewModules(manifest map[string]ManifestEntry) if err := p.generateMinReqFilesNewMod(moduleName, modulePath, importPath, apiName); err != nil { return err } + log.Printf("Adding new module %s to list of modules to process", moduleName) + p.modules = append(p.modules, moduleName) if err := p.modEditReplaceInSnippets(modulePath, importPath); err != nil { return err }