From 1a5cd8aaa2ec8cc6525ff9a589a63e8e76d097d3 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Fri, 23 Jan 2026 20:41:22 +0300 Subject: [PATCH] Update template syntax in custom command examples Replaces double curly braces with the new template syntax `{%{{{...}}}%}` in the 'Terminal Command' and 'Condition' fields for custom commands documentation. --- docs/en/studio/custom-commands.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/studio/custom-commands.md b/docs/en/studio/custom-commands.md index 916861442e..ab887ec944 100644 --- a/docs/en/studio/custom-commands.md +++ b/docs/en/studio/custom-commands.md @@ -115,11 +115,11 @@ Here's an example command that builds a Docker image for Helm charts: **Command Properties:** - **Command Name:** `buildDockerImage` - **Display Name:** `Build Docker Image` -- **Terminal Command:** `./build-image.ps1 -ProjectPath {{metadata.projectPath}} -ImageName {{metadata.imageName}}` +- **Terminal Command:** `./build-image.ps1 -ProjectPath {%{{{metadata.projectPath}}}%} -ImageName {%{{{metadata.imageName}}}%}` - **Working Directory:** `etc/helm` - **Trigger Targets:** Helm Charts Root, Helm Main Chart, Helm Sub Chart - **Execution Targets:** Helm Main Chart, Helm Sub Chart -- **Condition:** `{{metadata.projectPath}}` +- **Condition:** `{%{{{metadata.projectPath}}}%}` This command: 1. Appears in the context menu of Helm charts root and all chart nodes