From c7c1614278a4eba47214fcdb3cd1704242daf442 Mon Sep 17 00:00:00 2001 From: Will Lillis Date: Tue, 15 Apr 2025 03:01:31 -0400 Subject: [PATCH] fix(xtask): trim `EMSCRIPTEN_TAG` arg to docker command in `build-wasm` command --- xtask/src/build_wasm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtask/src/build_wasm.rs b/xtask/src/build_wasm.rs index 43679835..10725277 100644 --- a/xtask/src/build_wasm.rs +++ b/xtask/src/build_wasm.rs @@ -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 } };