Remove the optional argument to contruct_env. It simple if we always construct the env in the same place. Avoid using temp files, and avoid changing directory.
28 lines
608 B
Bash
Executable File
28 lines
608 B
Bash
Executable File
#!/bin/sh
|
|
# This script is sourced by the user and uses
|
|
# their shell. Try not to use bashisms.
|
|
|
|
# Do not execute this script without sourcing,
|
|
# because it won't have any effect then.
|
|
# That is, always run this script with
|
|
#
|
|
# . ./emsdk_env.sh
|
|
# or
|
|
# source ./emsdk_env.sh
|
|
#
|
|
# instead of just plainly running with
|
|
#
|
|
# ./emsdk_env.sh
|
|
#
|
|
# which won't have any effect.
|
|
DIR="$BASH_SOURCE"
|
|
if [ "$DIR" = "" ]; then
|
|
DIR="$0"
|
|
fi
|
|
DIR="$(dirname "$DIR")"
|
|
|
|
# Force emsdk to use bash syntax so that this works in windows + bash too
|
|
EMSDK_BASH=1 $DIR/emsdk construct_env
|
|
. $DIR/emsdk_set_env.sh
|
|
unset DIR
|