зеркало из https://github.com/electron/electron.git
27 строки
626 B
Python
Executable File
27 строки
626 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
|
|
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
|
|
|
|
|
def main():
|
|
os.chdir(SOURCE_ROOT)
|
|
|
|
if sys.platform == 'darwin':
|
|
atom_shell = os.path.join(SOURCE_ROOT, 'out', 'Debug', 'Atom.app',
|
|
'Contents', 'MacOS', 'Atom')
|
|
elif sys.platform == 'win32':
|
|
atom_shell = os.path.join(SOURCE_ROOT, 'out', 'Debug', 'atom.exe')
|
|
else:
|
|
atom_shell = os.path.join(SOURCE_ROOT, 'out', 'Debug', 'atom')
|
|
|
|
subprocess.check_call([atom_shell, 'spec'] + sys.argv[1:])
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main())
|