File tree 2 files changed +3
-3
lines changed
ci/docker/mipsel-unknown-linux-musl
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- FROM ubuntu:18.10
1
+ FROM ubuntu:18.04
2
2
3
3
RUN apt-get update && \
4
4
apt-get install -y --no-install-recommends \
Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ pub(crate) fn disassemble_myself() -> HashSet<Function> {
32
32
// "wasm-bindgen-test_bg". When running in node this is actually a shim JS
33
33
// file. Ask node where that JS file is, and then we use that with a wasm
34
34
// extension to find the wasm file itself.
35
- let js_shim = resolve ( "wasm-bindgen-test_bg " ) ;
36
- let js_shim = Path :: new ( & js_shim) . with_extension ( " wasm") ;
35
+ let js_shim = resolve ( "wasm-bindgen-test " ) ;
36
+ let js_shim = Path :: new ( & js_shim) . with_file_name ( "wasm-bindgen-test_bg. wasm") ;
37
37
38
38
// Execute `wasm2wat` synchronously, waiting for and capturing all of its
39
39
// output. Note that we pass in a custom `maxBuffer` parameter because we're
You can’t perform that action at this time.
0 commit comments