Files
2019-10-17 12:36:15 +09:00

10 lines
248 B
Bash
Executable File

#!/bin/sh
set -eu
# Ensure the downloaded Python version is used
export PATH="$LAMBDA_RUNTIME_DIR/bin:$PATH"
# Execute the "python" runtime bootstrap
export LAMBDA_RUNTIME_DIR="$(dirname "$0")/../python"
exec "$LAMBDA_RUNTIME_DIR/bootstrap" "$@"