зеркало из https://github.com/electron/electron.git
15 строки
317 B
Python
15 строки
317 B
Python
|
import os
|
||
|
import subprocess
|
||
|
import sys
|
||
|
|
||
|
|
||
|
SOURCE_ROOT = os.path.dirname(os.path.dirname(__file__))
|
||
|
|
||
|
def main():
|
||
|
# Proxy all args to node script
|
||
|
script = os.path.join(SOURCE_ROOT, sys.argv[1])
|
||
|
subprocess.check_call(['node', script] + [str(x) for x in sys.argv[2:]])
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
sys.exit(main())
|