8 lines
118 B
Bash
8 lines
118 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
|
||
|
|
# Set-up PATH and other environment variables
|
||
|
|
EMSDK_QUIET=1 source /emsdk/emsdk_env.sh
|
||
|
|
|
||
|
|
exec "$@"
|