mirror of
https://github.com/zhigang1992/now-deployment.git
synced 2026-06-14 17:59:14 +08:00
11 lines
265 B
Bash
Executable File
11 lines
265 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
# `PYTHONPATH` is *not* a restricted env var, so only set the
|
|
# default one if the user did not provide one of their own
|
|
if [ -z "${PYTHONPATH-}" ]; then
|
|
export PYTHONPATH="$LAMBDA_RUNTIME_DIR"
|
|
fi
|
|
|
|
exec python "$LAMBDA_RUNTIME_DIR/bootstrap.py"
|