Skip to content

Commit

Permalink
fix(docs): environment variable MISE_OVERRIDE_TOOL_VERSIONS_FILENAME …
Browse files Browse the repository at this point in the history
…should be plural (#4183)
  • Loading branch information
roele authored Jan 23, 2025
1 parent 9ef7056 commit 694391f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions schema/mise.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions settings.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 694391f

Please sign in to comment.