From 5c376e27dbb9c58e837a2fced8a9c9b07fae5a64 Mon Sep 17 00:00:00 2001 From: Mark Keisler Date: Mon, 7 Jul 2025 10:47:42 -0500 Subject: [PATCH] docs: update ubi tag_regex syntax When using double quotes as in the example, mise throws an error: ``` Error loading settings file: TOML parse error at line 21, column 73 | 21 | "ubi:cargo-bins/cargo-binstall" = { version = "latest", tag_regex = "^\d+\." } | ^ invalid escape sequence expected `b`, `f`, `n`, `r`, `t`, `u`, `U`, `\`, `"` ``` --- docs/dev-tools/backends/ubi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev-tools/backends/ubi.md b/docs/dev-tools/backends/ubi.md index aeb4c6fe24..2c72bc288c 100644 --- a/docs/dev-tools/backends/ubi.md +++ b/docs/dev-tools/backends/ubi.md @@ -128,7 +128,7 @@ releases. ```toml [tools] -"ubi:cargo-bins/cargo-binstall" = { version = "latest", tag_regex = "^\d+\." } +"ubi:cargo-bins/cargo-binstall" = { version = "latest", tag_regex = '^\d+\.' } ``` ## Self-hosted GitHub/GitLab