Changeset 24323


Ignore:
Timestamp:
11/11/19 15:16:19 (5 years ago)
Author:
jdquinn
Message:

BUG: Moving emsdk/ to install/ rather than creating a sym link

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/emscripten/install.sh

    r24317 r24323  
    1111# Get Emscripten SDK (emsdk) driver if we have not previously installed
    1212# Emscripten. Otherwise, just get the latest version.
    13 if [[ ! -d ./emsdk ]]; then
     13if [[ ! -d ./install ]]; then
    1414        # Get the emsdk repo
    1515        git clone https://github.com/emscripten-core/emsdk.git
    1616
    17         # Create symbolic link
    18         ln -s ./emsdk ./install
     17        # Move source to 'install' directory
     18        mv ./emsdk ./install
    1919
    20         cd ./emsdk
     20        cd ./install
    2121else
    2222        # Fetch the latest version of the emsdk
    23         cd ./emsdk
     23        cd ./install
    2424        git pull
    2525fi
Note: See TracChangeset for help on using the changeset viewer.