From 694391fc575cc2b317016865ec17400c62af43db Mon Sep 17 00:00:00 2001 From: Roland Schaer Date: Thu, 23 Jan 2025 19:03:15 +0100 Subject: [PATCH] fix(docs): environment variable MISE_OVERRIDE_TOOL_VERSIONS_FILENAME should be plural (#4183) --- schema/mise.json | 4 ++-- settings.toml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/schema/mise.json b/schema/mise.json index 26c0e39642..a51ceddf73 100644 --- a/schema/mise.json +++ b/schema/mise.json @@ -579,9 +579,9 @@ "type": "string" } }, - "override_tool_versions_filename": { + "override_tool_versions_filenames": { "default": [], - "description": "If set, mise will ignore .tool-versions files and use these filename instead. Can be set to `none` to disable .tool-versions. This must be an env var.", + "description": "If set, mise will ignore .tool-versions files and use these filenames instead. Can be set to `none` to disable .tool-versions. This must be an env var.", "type": "array", "items": { "type": "string" diff --git a/settings.toml b/settings.toml index 3e579eb032..413a21072f 100644 --- a/settings.toml +++ b/settings.toml @@ -591,11 +591,11 @@ default = [] description = "If set, mise will ignore default config files like `mise.toml` and use these filenames instead. This must be an env var." parse_env = "list_by_colon" -[override_tool_versions_filename] -env = "MISE_OVERRIDE_TOOL_VERSIONS_FILENAME" +[override_tool_versions_filenames] +env = "MISE_OVERRIDE_TOOL_VERSIONS_FILENAMES" type = "ListString" default = [] -description = "If set, mise will ignore .tool-versions files and use these filename instead. Can be set to `none` to disable .tool-versions. This must be an env var." +description = "If set, mise will ignore .tool-versions files and use these filenames instead. Can be set to `none` to disable .tool-versions. This must be an env var." parse_env = "list_by_colon" [paranoid]