From 1eafcb489227ae9a8d86afa520b82139631ca878 Mon Sep 17 00:00:00 2001 From: Martin Basti Date: Wed, 24 Jul 2024 13:17:37 +0200 Subject: [PATCH] fix: false positive yamllinter error Yaml linter looks for any occurence of 'params.' substring in tekton scripts However this help message matches, updating message to avoid false positive error as quick fix. Signed-off-by: Martin Basti --- task/build-vm-image/0.1/build-vm-image.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/task/build-vm-image/0.1/build-vm-image.yaml b/task/build-vm-image/0.1/build-vm-image.yaml index a756ad2a64..15a02f2f46 100644 --- a/task/build-vm-image/0.1/build-vm-image.yaml +++ b/task/build-vm-image/0.1/build-vm-image.yaml @@ -159,7 +159,7 @@ spec: export CONFIG_TOML_FILE=config.toml if [ -f /var/workdir/source/config.toml ]; then echo "Using the config.toml file found in the repository root!" - echo " Remove the config.toml file or set params.CONFIG_TOML_FILE to another file to prevent using config.toml." + echo " Remove the config.toml file or set parameter CONFIG_TOML_FILE to another file to prevent using config.toml." else echo "No config.toml file found. Using an empty configuration." touch /var/workdir/source/$CONFIG_TOML_FILE