Support wild (#1949)

This commit is contained in:
Taiki Endo
2026-07-23 20:57:02 +09:00
committed by GitHub
parent 4427ee328d
commit 411aa4ba3c
7 changed files with 59 additions and 3 deletions
+2 -1
View File
@@ -125,7 +125,8 @@ fn main() {
// and tool input option in test-alias in .github/workflows/ci.yml.
let alias = match name.as_str() {
"cargo-nextest" => Some(name.strip_prefix("cargo-").unwrap().to_owned()),
"taplo" | "typos-cli" | "wasm-bindgen" | "wasmtime" => Some(format!("{name}-cli")),
"wild" => Some(format!("{name}-linker")),
"taplo" | "typos" | "wasm-bindgen" | "wasmtime" => Some(format!("{name}-cli")),
_ => None,
};