fix(xtask): trim EMSCRIPTEN_TAG arg to docker command in build-wasm
command
This commit is contained in:
parent
c085a772cf
commit
c7c1614278
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue