UNPKG

265 BPlain TextView Raw
1#!/bin/sh
2set -eu
3
4# `PYTHONPATH` is *not* a restricted env var, so only set the
5# default one if the user did not provide one of their own
6if [ -z "${PYTHONPATH-}" ]; then
7 export PYTHONPATH="$LAMBDA_RUNTIME_DIR"
8fi
9
10exec python "$LAMBDA_RUNTIME_DIR/bootstrap.py"