mirror of https://github.com/pyodide/pyodide.git
9 lines
284 B
Bash
9 lines
284 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
ROOT=`dirname ${BASH_SOURCE[0]}`
|
||
|
|
||
|
# emsdk_env.sh is fairly noisy, and suppress error message if the file doesn't
|
||
|
# exist yet (i.e. before building emsdk)
|
||
|
source "$ROOT/emsdk/emsdk/emsdk_env.sh" 2> /dev/null || true
|
||
|
export PATH=$ROOT/ccache:$ROOT/node_modules/.bin/:$PATH
|