Allow testing release build
This commit is contained in:
parent
44d0bceff4
commit
596f14eca5
1 changed files with 7 additions and 3 deletions
|
@ -11,13 +11,17 @@ SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
||||||
def main():
|
def main():
|
||||||
os.chdir(SOURCE_ROOT)
|
os.chdir(SOURCE_ROOT)
|
||||||
|
|
||||||
|
config = 'D'
|
||||||
|
if len(sys.argv) == 2 and sys.argv[1] == '-R':
|
||||||
|
config = 'R'
|
||||||
|
|
||||||
if sys.platform == 'darwin':
|
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')
|
'Contents', 'MacOS', 'Atom')
|
||||||
elif sys.platform == 'win32':
|
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:
|
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:])
|
subprocess.check_call([atom_shell, 'spec'] + sys.argv[1:])
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue