Skip to content

Commit

Permalink
docs: example with required version (#3448)
Browse files Browse the repository at this point in the history
Not supplying the version results in the following error:

    mise ERROR error parsing config file: ~/.config/mise/config.toml
    mise ERROR TOML parse error at line 5, column 17
      |
    5 | "ubi:cli/cli" = { exe = "gh" }
      |                 ^^^^^^^^^^^^^^
    missing version

    mise ERROR Run with --verbose or MISE_VERBOSE=1 for more information
  • Loading branch information
felixhummel authored Dec 10, 2024
1 parent 901e048 commit 5d17c34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/dev-tools/backends/ubi.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ use the `exe` option to specify the executable name:

```toml
[tools]
"ubi:cli/cli" = { exe = "gh" } # github's cli
"ubi:cli/cli" = { version = "latest", exe = "gh" } # github's cli
```

### `matching`
Expand Down

0 comments on commit 5d17c34

Please sign in to comment.