Files
ci-emsdk/emsdk_env.fish
Sam Clegg 819e95cd99 Cleanup emsdk_env scripts (#539)
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.
2020-07-06 16:34:02 -07:00

14 lines
321 B
Fish
Executable File

#In your Fish configuration, add this line:
#alias emsdk_setup ". /path/to/emsdk/emsdk_env.fish"
#Now, when you want to use the SDK, run this alias first to set up
#your environment.
set -l script (status -f)
set -l dir (dirname $script)
$dir/emsdk construct_env
. $dir/emsdk_set_env.sh
set -e -l script
set -e -l dir