mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-31 12:47:43 +00:00
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`.
This commit is contained in:
parent
02c75c5f67
commit
bcee98486f
2 changed files with 4 additions and 4 deletions
4
docs/build/linux-ubuntu.md
vendored
4
docs/build/linux-ubuntu.md
vendored
|
|
@ -69,8 +69,8 @@ You'll also have to install `emscripten` (version 3.1.44 is known to work):
|
|||
```shell
|
||||
git clone https://github.com/emscripten-core/emsdk.git
|
||||
cd emsdk
|
||||
./emsdk install latest
|
||||
./emsdk activate latest
|
||||
./emsdk install 3.1.44
|
||||
./emsdk activate 3.1.44
|
||||
export EMSCRIPTEN_BASE=$(pwd)/upstream/emscripten
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -40,8 +40,8 @@ RUN curl -sL https://deb.nodesource.com/setup_18.x | bash && \
|
|||
RUN cd /usr/share && \
|
||||
git clone https://github.com/emscripten-core/emsdk.git && \
|
||||
cd emsdk && \
|
||||
./emsdk install latest && \
|
||||
./emsdk activate latest && \
|
||||
./emsdk install 3.1.44 && \
|
||||
./emsdk activate 3.1.44 && \
|
||||
echo "#!/bin/bash" > /usr/bin/bashwrapper && \
|
||||
echo "export EMSCRIPTEN_BASE=/usr/share/emsdk/upstream/emscripten" >> /usr/bin/bashwrapper
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue