This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
portapy/bin/python.js

11 lines
264 B
JavaScript
Raw Normal View History

2018-10-30 19:54:49 -04:00
#!/usr/bin/env node
const path = require('path');
let pythonPath = path.resolve(__dirname, '..', 'Python', 'python.exe');
2018-10-30 21:21:32 -04:00
// const versions = require('./')
2018-10-30 19:54:49 -04:00
2018-10-30 21:21:32 -04:00
let args = process.argv.slice(2);
2018-10-30 19:54:49 -04:00
2018-10-30 21:21:32 -04:00
require('child_process').spawn(pythonPath, args, {stdio: 'inherit'});
2018-10-30 19:54:49 -04:00