Commit 37a2b174 authored by Peter Kasting's avatar Peter Kasting Committed by Commit Bot

Silence noisy installer actions. This looks like leftover debugging logging.

Bug: 918220
Change-Id: I59de7158479d82f4775638b3e31645f18b818759
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1865656
Auto-Submit: Peter Kasting <pkasting@chromium.org>
Reviewed-by: default avatarSorin Jianu <sorin@chromium.org>
Commit-Queue: Peter Kasting <pkasting@chromium.org>
Cr-Commit-Position: refs/heads/master@{#706693}
parent fc09f4a7
......@@ -79,7 +79,9 @@ template("generate_installer") {
"--setup_runtime_deps",
rebase_path(updater_runtime_deps, root_build_dir),
"--output_name=updater",
"--verbose",
# Optional argument for verbose archiving output.
#"--verbose",
]
deps = [
......
......@@ -71,11 +71,9 @@ def CopySectionFilesToStagingDir(config, section, staging_dir, src_dir):
if src_paths and not os.path.exists(dst_dir):
os.makedirs(dst_dir)
for src_path in src_paths:
print(src_path)
dst_path = os.path.join(dst_dir, os.path.basename(src_path))
if not os.path.exists(dst_path):
g_archive_inputs.append(src_path)
print('paths src_path={0}, dest_dir={1}'.format(src_path, dst_dir))
shutil.copy(src_path, dst_dir)
def GetLZMAExec(build_dir):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment