Don't check build version for arm target
This commit is contained in:
parent
dadd34249a
commit
d158dbdb68
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ def parse_args():
|
||||||
|
|
||||||
|
|
||||||
def get_atom_shell_build_version():
|
def get_atom_shell_build_version():
|
||||||
if os.environ.has_key('CI'):
|
if get_target_arch() == 'arm' or os.environ.has_key('CI'):
|
||||||
# In CI we just build as told.
|
# In CI we just build as told.
|
||||||
return ATOM_SHELL_VERSION
|
return ATOM_SHELL_VERSION
|
||||||
if PLATFORM == 'darwin':
|
if PLATFORM == 'darwin':
|
||||||
|
|
Loading…
Reference in a new issue