Support Fish shell (emsdk_env) (#214)

Fish shell doesn't support the same syntax as most shells,
so add an emsdk_env.fish to support these users.
Instructions included in the file.
This commit is contained in:
Shane Peelar 2019-03-18 14:43:13 -04:00 коммит произвёл Alon Zakai
Родитель 590e7bb23d
Коммит 9538381d56
1 изменённых файлов: 17 добавлений и 0 удалений

17
emsdk_env.fish Executable file
Просмотреть файл

@ -0,0 +1,17 @@
#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)
pushd $dir > /dev/null
./emsdk construct_env "$argv"
. ./emsdk_set_env.sh
set -e -l script
set -e -l dir
popd > /dev/null