Skip to content

Commit c09ba6e

Browse files
committed
Use upload-node-headers.py in upload.py
1 parent 7df1957 commit c09ba6e

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

script/create-dist.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ def main():
8484
create_symbols()
8585
copy_binaries()
8686
copy_chromedriver()
87-
copy_headers()
8887
copy_license()
8988

9089
if TARGET_PLATFORM == 'linux':

script/upload.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import argparse
44
import errno
5-
import glob
65
import os
76
import subprocess
87
import sys
@@ -59,11 +58,16 @@ def main():
5958
os.path.join(DIST_DIR, CHROMEDRIVER_NAME))
6059

6160
if args.publish_release:
62-
# Upload PDBs to Windows symbol server.
6361
if TARGET_PLATFORM == 'win32':
62+
# Upload PDBs to Windows symbol server.
6463
execute([sys.executable,
6564
os.path.join(SOURCE_ROOT, 'script', 'upload-windows-pdb.py')])
6665

66+
# Upload node headers.
67+
execute([sys.executable,
68+
os.path.join(SOURCE_ROOT, 'script', 'upload-node-headers.py'),
69+
'-v', ATOM_SHELL_VERSION])
70+
6771
# Press the publish button.
6872
publish_release(github, release_id)
6973

0 commit comments

Comments
 (0)