Don't upload arm version of mksnapshot too
This commit is contained in:
parent
f0eac9d828
commit
2078e5736e
1 changed files with 5 additions and 7 deletions
|
@ -74,16 +74,14 @@ def main():
|
||||||
upload_atom_shell(github, release_id, os.path.join(DIST_DIR, SYMBOLS_NAME))
|
upload_atom_shell(github, release_id, os.path.join(DIST_DIR, SYMBOLS_NAME))
|
||||||
|
|
||||||
# Upload chromedriver and mksnapshot for minor version update.
|
# Upload chromedriver and mksnapshot for minor version update.
|
||||||
if parse_version(args.version)[2] == '0':
|
if get_target_arch() != 'arm' and parse_version(args.version)[2] == '0':
|
||||||
|
chromedriver = 'chromedriver-{0}-{1}-{2}.zip'.format(
|
||||||
|
get_chromedriver_version(), PLATFORM, get_target_arch())
|
||||||
|
upload_atom_shell(github, release_id,
|
||||||
|
os.path.join(DIST_DIR, chromedriver))
|
||||||
upload_atom_shell(github, release_id,
|
upload_atom_shell(github, release_id,
|
||||||
os.path.join(DIST_DIR, MKSNAPSHOT_NAME))
|
os.path.join(DIST_DIR, MKSNAPSHOT_NAME))
|
||||||
|
|
||||||
if get_target_arch() != 'arm':
|
|
||||||
chromedriver = 'chromedriver-{0}-{1}-{2}.zip'.format(
|
|
||||||
get_chromedriver_version(), PLATFORM, get_target_arch())
|
|
||||||
upload_atom_shell(github, release_id,
|
|
||||||
os.path.join(DIST_DIR, chromedriver))
|
|
||||||
|
|
||||||
if PLATFORM == 'win32':
|
if PLATFORM == 'win32':
|
||||||
# Upload node headers.
|
# Upload node headers.
|
||||||
execute([sys.executable,
|
execute([sys.executable,
|
||||||
|
|
Loading…
Reference in a new issue