"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const path_1 = require("path"); const child_process_1 = require("child_process"); // `PYTHONPATH` is *not* a restricted env var, so only set the // default one if the user did not provide one of their own if (!process.env.PYTHONPATH) { process.env.PYTHONPATH = process.env.LAMBDA_RUNTIME_DIR; } const bootstrap = path_1.join(__dirname, 'bootstrap.py'); child_process_1.spawn('python', [bootstrap], { stdio: 'inherit' }); //# sourceMappingURL=bootstrap.js.map