Merge pull request #2939 from vrc-get/fix-buildx-devtools-not-working

build: cargo xtask build-alcom --devtools not working
This commit is contained in:
anatawa12 2026-05-30 01:12:17 +09:00 committed by GitHub
commit 6f8cd53159
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -170,6 +170,10 @@ fn build_cargo(
}
}
if config.devtools {
features.push("devtools");
}
cmd.arg("--features").arg(features.iter().join(","));
if let Some(target) = target_triple {