mirror of
https://github.com/zhigang1992/now-deployment.git
synced 2026-06-14 17:59:14 +08:00
8 lines
398 B
JavaScript
8 lines
398 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const path_1 = require("path");
|
|
const child_process_1 = require("child_process");
|
|
const pythonBin = path_1.join(__dirname, 'bin', 'python');
|
|
const bootstrap = path_1.join(__dirname, '..', 'python', 'bootstrap.py');
|
|
child_process_1.spawn(pythonBin, [bootstrap], { stdio: 'inherit' });
|
|
//# sourceMappingURL=bootstrap.js.map
|