We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
build.rs
scripts/publish.py
1 parent 52daf9b commit 4f8bc8aCopy full SHA for 4f8bc8a
lib/c-api/build.rs
@@ -75,7 +75,9 @@ fn main() {
75
76
/// Check whether we should build the C API headers or set `inline-c` up.
77
fn running_self() -> bool {
78
- env::var("DOCS_RS").is_err() && env::var("_CBINDGEN_IS_RUNNING").is_err()
+ env::var("DOCS_RS").is_err()
79
+ && env::var("_CBINDGEN_IS_RUNNING").is_err()
80
+ && env::var("WASMER_PUBLISH_SCRIPT_IS_RUNNING").is_err()
81
}
82
83
/// Build the header files for the `wasm_c_api` API.
0 commit comments