2014-11-18 00:42:02 +00:00
|
|
|
# This script is sourced by the user and uses
|
|
|
|
|
# their shell. Try not to use bashisms.
|
|
|
|
|
|
|
|
|
|
SRC="$BASH_SOURCE"
|
|
|
|
|
if [ "$SRC" = "" ]; then
|
|
|
|
|
SRC="$_"
|
|
|
|
|
fi
|
|
|
|
|
pushd `dirname "$SRC"` > /dev/null
|
|
|
|
|
unset SRC
|
2014-07-03 18:50:00 +03:00
|
|
|
|
|
|
|
|
./emsdk construct_env
|
2014-11-18 00:42:02 +00:00
|
|
|
. ./emsdk_set_env.sh
|
|
|
|
|
|
2014-09-02 12:01:35 +02:00
|
|
|
popd > /dev/null
|