Changeset 24323
- Timestamp:
- 11/11/19 15:16:19 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/emscripten/install.sh
r24317 r24323 11 11 # Get Emscripten SDK (emsdk) driver if we have not previously installed 12 12 # Emscripten. Otherwise, just get the latest version. 13 if [[ ! -d ./ emsdk]]; then13 if [[ ! -d ./install ]]; then 14 14 # Get the emsdk repo 15 15 git clone https://github.com/emscripten-core/emsdk.git 16 16 17 # Create symbolic link18 ln -s./emsdk ./install17 # Move source to 'install' directory 18 mv ./emsdk ./install 19 19 20 cd ./ emsdk20 cd ./install 21 21 else 22 22 # Fetch the latest version of the emsdk 23 cd ./ emsdk23 cd ./install 24 24 git pull 25 25 fi
Note:
See TracChangeset
for help on using the changeset viewer.