mirror of
https://github.com/electron/electron.git
synced 2026-02-02 03:05:29 -05:00
Adds --chromium_dir argument to script/create-dist.py
This commit is contained in:
@@ -82,6 +82,9 @@ TARGET_DIRECTORIES = {
|
||||
def main():
|
||||
args = parse_args()
|
||||
|
||||
if args.chromium_dir:
|
||||
globals().update(CHROMIUM_DIR=args.chromium_dir)
|
||||
|
||||
if args.verbose:
|
||||
enable_verbose_mode()
|
||||
|
||||
@@ -319,6 +322,8 @@ def parse_args():
|
||||
parser.add_argument('--no_api_docs',
|
||||
action='store_true',
|
||||
help='Skip generating the Electron API Documentation!')
|
||||
parser.add_argument('--chromium_dir',
|
||||
help='Specify a custom libchromiumcontent dist directory if manually compiled')
|
||||
parser.add_argument('-v', '--verbose',
|
||||
action='store_true',
|
||||
help='Prints the output of the subprocesses')
|
||||
|
||||
Reference in New Issue
Block a user