We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1d0b9b commit 23a7798Copy full SHA for 23a7798
tests/run-make/rustc_fluent_macro-hyphen-package/rmake.rs
@@ -4,5 +4,9 @@ use run_make_support::external_deps::cargo::cargo;
4
// packages that have hyphens in their package name.
5
6
fn main() {
7
- cargo().arg("build").arg("--manifest-path=./Cargo.toml").run();
+ // only run on standard OSes that support rustc_private.
8
+ #[cfg(all(any(unix, windows), not(wasm)))]
9
+ {
10
+ cargo().arg("build").arg("--manifest-path=./Cargo.toml").run();
11
+ }
12
}
0 commit comments