Silence the output of upload script.
This commit is contained in:
parent
db359ae75c
commit
ae70d5cb64
1 changed files with 3 additions and 3 deletions
|
@ -35,7 +35,7 @@ def main():
|
||||||
|
|
||||||
if not dist_newer_than_head():
|
if not dist_newer_than_head():
|
||||||
create_dist = os.path.join(SOURCE_ROOT, 'script', 'create-dist.py')
|
create_dist = os.path.join(SOURCE_ROOT, 'script', 'create-dist.py')
|
||||||
subprocess.check_call([sys.executable, create_dist])
|
subprocess.check_output([sys.executable, create_dist])
|
||||||
|
|
||||||
github = GitHub(auth_token())
|
github = GitHub(auth_token())
|
||||||
release_id = create_or_get_release_draft(github, args.version)
|
release_id = create_or_get_release_draft(github, args.version)
|
||||||
|
@ -113,8 +113,8 @@ def upload(auth_token, version=ATOM_SHELL_VRESION):
|
||||||
if TARGET_PLATFORM == 'win32':
|
if TARGET_PLATFORM == 'win32':
|
||||||
# Generate the node.lib.
|
# Generate the node.lib.
|
||||||
build = os.path.join(SOURCE_ROOT, 'script', 'build.py')
|
build = os.path.join(SOURCE_ROOT, 'script', 'build.py')
|
||||||
subprocess.check_call([sys.executable, build, '-c', 'Release',
|
subprocess.check_output([sys.executable, build, '-c', 'Release',
|
||||||
'-t', 'generate_node_lib'])
|
'-t', 'generate_node_lib'])
|
||||||
|
|
||||||
# Upload the 32bit node.lib.
|
# Upload the 32bit node.lib.
|
||||||
node_lib = os.path.join(OUT_DIR, 'node.lib')
|
node_lib = os.path.join(OUT_DIR, 'node.lib')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue