Skip to content

Commit 5d91447

Browse files
authored
Merge pull request #9527 from keymanapp/docs/linux/emsdk
docs(linux): Explicitly specify emscripten version
2 parents 79641fa + bcee984 commit 5d91447

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)