2013-07-17 08:42:06 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
2016-04-30 08:52:53 +00:00
|
|
|
from lib.util import atom_gyp, rm_rf
|
2015-04-12 14:10:02 +00:00
|
|
|
|
2013-07-17 08:42:06 +00:00
|
|
|
|
|
|
|
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
|
|
|
|
2015-04-12 14:10:02 +00:00
|
|
|
PROJECT_NAME = atom_gyp()['project_name%']
|
|
|
|
PRODUCT_NAME = atom_gyp()['product_name%']
|
|
|
|
|
2013-07-17 08:42:06 +00:00
|
|
|
|
|
|
|
def main():
|
2013-07-19 02:41:24 +00:00
|
|
|
os.chdir(SOURCE_ROOT)
|
|
|
|
|
2015-04-09 02:00:31 +00:00
|
|
|
config = 'D'
|
|
|
|
if len(sys.argv) == 2 and sys.argv[1] == '-R':
|
|
|
|
config = 'R'
|
|
|
|
|
2013-07-17 08:42:06 +00:00
|
|
|
if sys.platform == 'darwin':
|
2015-04-12 14:10:02 +00:00
|
|
|
atom_shell = os.path.join(SOURCE_ROOT, 'out', config,
|
|
|
|
'{0}.app'.format(PRODUCT_NAME), 'Contents',
|
|
|
|
'MacOS', PRODUCT_NAME)
|
2014-02-14 15:17:24 +00:00
|
|
|
elif sys.platform == 'win32':
|
2015-04-12 14:10:02 +00:00
|
|
|
atom_shell = os.path.join(SOURCE_ROOT, 'out', config,
|
|
|
|
'{0}.exe'.format(PROJECT_NAME))
|
2014-02-14 15:17:24 +00:00
|
|
|
else:
|
2015-04-12 14:10:02 +00:00
|
|
|
atom_shell = os.path.join(SOURCE_ROOT, 'out', config, PROJECT_NAME)
|
2013-07-17 08:42:06 +00:00
|
|
|
|
2016-04-30 08:47:29 +00:00
|
|
|
returncode = 0
|
|
|
|
try:
|
|
|
|
subprocess.check_call([atom_shell, 'spec'] + sys.argv[1:])
|
|
|
|
except subprocess.CalledProcessError as e:
|
|
|
|
returncode = e.returncode
|
2013-07-17 08:42:06 +00:00
|
|
|
|
2016-04-30 08:05:52 +00:00
|
|
|
if os.environ.has_key('OUTPUT_TO_FILE'):
|
|
|
|
output_to_file = os.environ['OUTPUT_TO_FILE']
|
|
|
|
with open(output_to_file, 'r') as f:
|
|
|
|
print f.read()
|
2016-04-30 08:52:53 +00:00
|
|
|
rm_rf(output_to_file)
|
|
|
|
|
2016-04-30 08:05:52 +00:00
|
|
|
|
2016-04-30 08:47:29 +00:00
|
|
|
return returncode
|
|
|
|
|
2013-07-17 08:42:06 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main())
|