emscripten-buildbot.sh: let user override default SDKDIR.

This commit is contained in:
Ryan C. Gordon 2017-01-06 20:00:17 -05:00
parent cbe44f7ff1
commit 5fcd454a16
1 changed files with 5 additions and 1 deletions

View File

@ -1,9 +1,13 @@
#!/bin/bash
SDKDIR="/emsdk_portable"
if [ -z "$SDKDIR" ]; then
SDKDIR="/emsdk_portable"
fi
ENVSCRIPT="$SDKDIR/emsdk_env.sh"
if [ ! -f "$ENVSCRIPT" ]; then
echo "ERROR: This script expects the Emscripten SDK to be in '$SDKDIR'." 1>&2
echo "ERROR: Set the \$SDKDIR environment variable to override this." 1>&2
exit 1
fi