mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-30 14:17:02 +00:00
Normalize -
to _
in resulting Wasm file names (#9644)
This PR updates the extension builder to normalize `-` to `_` in the Rust package names when computing the resulting `.wasm` file name. The `wasm32-wasi` target does this normalization internally already, so we need to do the same to ensure we're looking for the resulting `.wasm` file in the right spot. Release Notes: - N/A
This commit is contained in:
parent
3831088251
commit
1f21088591
1 changed files with 5 additions and 1 deletions
|
@ -138,7 +138,11 @@ impl ExtensionBuilder {
|
||||||
"target",
|
"target",
|
||||||
RUST_TARGET,
|
RUST_TARGET,
|
||||||
if options.release { "release" } else { "debug" },
|
if options.release { "release" } else { "debug" },
|
||||||
cargo_toml.package.name.as_str(),
|
&cargo_toml
|
||||||
|
.package
|
||||||
|
.name
|
||||||
|
// The wasm32-wasi target normalizes `-` in package names to `_` in the resulting `.wasm` file.
|
||||||
|
.replace('-', "_"),
|
||||||
]);
|
]);
|
||||||
wasm_path.set_extension("wasm");
|
wasm_path.set_extension("wasm");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue