compiler-discord/docker/javascript/run.sh
2019-03-13 01:51:49 -04:00

11 lines
172 B
Bash

if [ "$EVAL_EXPR" = "true" ]; then
flag="-p"
else
flag="-e"
fi
if [ "$EVAL_HARMONY" = "true" ]; then
node --harmony "$flag" "$1"
else
node "$flag" "$1"
fi