Skip to content

Commit c7c1614

Browse files
committed
fix(xtask): trim EMSCRIPTEN_TAG arg to docker command in build-wasm
command
1 parent c085a77 commit c7c1614

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xtask/src/build_wasm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ pub fn run_wasm(args: &BuildWasm) -> Result<()> {
107107
};
108108

109109
// Run `emcc` in a container using the `emscripten-slim` image
110-
command.args([EMSCRIPTEN_TAG, "emcc"]);
110+
command.args([EMSCRIPTEN_TAG.trim(), "emcc"]);
111111
command
112112
}
113113
};

0 commit comments

Comments
 (0)