1
0
mirror of https://github.com/facebook/proxygen.git synced 2025-08-07 07:02:53 +03:00

add -v/--verbose option to see more output

Summary: I found this useful to see where manifests resolve to when they are already built

Reviewed By: HarveyHunt

Differential Revision: D32644308

fbshipit-source-id: b796cb67f154177fbac1093290d97fe5aab6b20c
This commit is contained in:
Alex Hornby
2021-11-24 09:59:04 -08:00
committed by Facebook GitHub Bot
parent 2b85fa2839
commit b4d92f3729

View File

@@ -553,6 +553,8 @@ class BuildCmd(ProjectCmdBase):
# Only populate the cache from continuous build runs # Only populate the cache from continuous build runs
if args.schedule_type == "continuous": if args.schedule_type == "continuous":
cached_project.upload() cached_project.upload()
elif args.verbose:
print("found good %s" % built_marker)
install_dirs.append(inst_dir) install_dirs.append(inst_dir)
@@ -1029,6 +1031,13 @@ def parse_args():
action="store_true", action="store_true",
default=False, default=False,
) )
add_common_arg(
"-v",
"--verbose",
help="Print more output",
action="store_true",
default=False,
)
add_common_arg( add_common_arg(
"--lfs-path", "--lfs-path",
help="Provide a parent directory for lfs when fbsource is unavailable", help="Provide a parent directory for lfs when fbsource is unavailable",