Skip to content

Commit

Permalink
fix: false positive yamllinter error
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
MartinBasti committed Jul 24, 2024
1 parent ef146c4 commit 1eafcb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion task/build-vm-image/0.1/build-vm-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1eafcb4

Please sign in to comment.