mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
build: copy chromedriver to correct location (#22092)
* build: copy chromedriver to correct location * build: try to free up disk space for macos releases * get verbose mode working on strip-binaries * Only use separate chromedriver build arm/arm64 * fixup circleci config Co-authored-by: John Kleinschmidt <jkleinsc@github.com>
This commit is contained in:
@@ -4,7 +4,7 @@ import argparse
|
||||
import os
|
||||
import sys
|
||||
|
||||
from lib.config import LINUX_BINARIES
|
||||
from lib.config import LINUX_BINARIES, enable_verbose_mode
|
||||
from lib.util import execute, get_out_dir
|
||||
|
||||
def strip_binaries(directory, target_cpu):
|
||||
@@ -26,6 +26,8 @@ def strip_binary(binary_path, target_cpu):
|
||||
|
||||
def main():
|
||||
args = parse_args()
|
||||
if args.verbose:
|
||||
enable_verbose_mode()
|
||||
if args.file:
|
||||
strip_binary(args.file, args.target_cpu)
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user