Commit 92c5f79b authored by Alex Hornby's avatar Alex Hornby Committed by Facebook GitHub Bot

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
parent d6273303
...@@ -553,6 +553,8 @@ class BuildCmd(ProjectCmdBase): ...@@ -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(): ...@@ -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",
......
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