fix(xtask): trim EMSCRIPTEN_TAG arg to docker command in build-wasm

command
This commit is contained in:
Will Lillis 2025-04-15 03:01:31 -04:00
parent c085a772cf
commit c7c1614278

View file

@ -107,7 +107,7 @@ pub fn run_wasm(args: &BuildWasm) -> Result<()> {
};
// Run `emcc` in a container using the `emscripten-slim` image
command.args([EMSCRIPTEN_TAG, "emcc"]);
command.args([EMSCRIPTEN_TAG.trim(), "emcc"]);
command
}
};