Skip to content

Commit bcee984

Browse files
committed
docs(linux): Explicitly specify emscripten version
emscripten 3.1.44 works, but 3.1.45 fails, so this change modifies the documentation to explicitly request `3.1.44` instead of `latest`.
1 parent 02c75c5 commit bcee984

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/build/linux-ubuntu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ You'll also have to install `emscripten` (version 3.1.44 is known to work):
6969
```shell
7070
git clone https://github.com/emscripten-core/emsdk.git
7171
cd emsdk
72-
./emsdk install latest
73-
./emsdk activate latest
72+
./emsdk install 3.1.44
73+
./emsdk activate 3.1.44
7474
export EMSCRIPTEN_BASE=$(pwd)/upstream/emscripten
7575
```
7676

linux/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ RUN curl -sL https://deb.nodesource.com/setup_18.x | bash && \
4040
RUN cd /usr/share && \
4141
git clone https://github.com/emscripten-core/emsdk.git && \
4242
cd emsdk && \
43-
./emsdk install latest && \
44-
./emsdk activate latest && \
43+
./emsdk install 3.1.44 && \
44+
./emsdk activate 3.1.44 && \
4545
echo "#!/bin/bash" > /usr/bin/bashwrapper && \
4646
echo "export EMSCRIPTEN_BASE=/usr/share/emsdk/upstream/emscripten" >> /usr/bin/bashwrapper
4747

0 commit comments

Comments
 (0)