UNPKG

248 BPlain TextView Raw
1#!/bin/sh
2set -eu
3
4# Ensure the downloaded Python version is used
5export PATH="$LAMBDA_RUNTIME_DIR/bin:$PATH"
6
7# Execute the "python" runtime bootstrap
8export LAMBDA_RUNTIME_DIR="$(dirname "$0")/../python"
9exec "$LAMBDA_RUNTIME_DIR/bootstrap" "$@"