From 9d14a827a8c46689aba9ac2caa35cf09a0ad50b1 Mon Sep 17 00:00:00 2001 From: i325261 Date: Mon, 30 Mar 2026 15:52:21 +0200 Subject: [PATCH] Fix: Conditional logging for helm chart generation message --- lib/add.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/add.js b/lib/add.js index c8a8040..0f09902 100644 --- a/lib/add.js +++ b/lib/add.js @@ -109,7 +109,9 @@ module.exports = class CapOperatorAddPlugin extends cds.add.Plugin { } await this.updateXsSecurity(project) - console.log("Once values.yaml is updated, run 'cds build' to generate the helm chart. You can find the generated chart in the 'gen' folder within your project directory.") + if (!isConfigurable && !withTemplates) { + console.log("Once values.yaml is updated, run 'cds build' to generate the helm chart. You can find the generated chart in the 'gen' folder within your project directory.") + } } async combine() {