diff --git a/examples/chef/chef.py b/examples/chef/chef.py index 1cba49c7a34c31..b323840b295e7d 100755 --- a/examples/chef/chef.py +++ b/examples/chef/chef.py @@ -107,6 +107,7 @@ def check_zap(master=False) -> str: """ shell.run_cmd(f"cd {_REPO_BASE_PATH}") if master: + flush_print("Fetching master") shell.run_cmd(f"git fetch origin master") branch = "master" else: @@ -114,6 +115,7 @@ def check_zap(master=False) -> str: return_cmd_output=True).replace("\n", "") command = f"git ls-tree {branch} third_party/zap/repo" zap_commit = shell.run_cmd(command, return_cmd_output=True) + flush_print(f"Raw zap commit {zap_commit}") zap_commit = zap_commit.split(" ")[2] zap_commit = zap_commit[:zap_commit.index("\t")] flush_print(f"zap commit: {zap_commit}")