mirror of
https://github.com/electron/electron.git
synced 2026-01-15 02:18:18 -05:00
Allow testing release build
This commit is contained in:
@@ -11,13 +11,17 @@ SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
||||
def main():
|
||||
os.chdir(SOURCE_ROOT)
|
||||
|
||||
config = 'D'
|
||||
if len(sys.argv) == 2 and sys.argv[1] == '-R':
|
||||
config = 'R'
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
atom_shell = os.path.join(SOURCE_ROOT, 'out', 'D', 'Atom.app',
|
||||
atom_shell = os.path.join(SOURCE_ROOT, 'out', config, 'Atom.app',
|
||||
'Contents', 'MacOS', 'Atom')
|
||||
elif sys.platform == 'win32':
|
||||
atom_shell = os.path.join(SOURCE_ROOT, 'out', 'D', 'atom.exe')
|
||||
atom_shell = os.path.join(SOURCE_ROOT, 'out', config, 'atom.exe')
|
||||
else:
|
||||
atom_shell = os.path.join(SOURCE_ROOT, 'out', 'D', 'atom')
|
||||
atom_shell = os.path.join(SOURCE_ROOT, 'out', config, 'atom')
|
||||
|
||||
subprocess.check_call([atom_shell, 'spec'] + sys.argv[1:])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user