Skip to content

Commit 343f80f

Browse files
committed
test
1 parent d9b9921 commit 343f80f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.generator/cli.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -753,8 +753,6 @@ def handle_generate(
753753
_copy_readme_to_docs(output, library_id, is_mono_repo)
754754
_clean_up_files_after_post_processing(output, library_id, is_mono_repo)
755755

756-
with open("/tmp/performance_metrics.log", "r") as f:
757-
print(f.read())
758756
except Exception as e:
759757
raise ValueError("Generation failed.") from e
760758
logger.info("'generate' command executed.")
@@ -1789,6 +1787,9 @@ def handle_release_stage(
17891787
output=args.output,
17901788
input=args.input,
17911789
)
1790+
with open("/tmp/performance_metrics.log", "r") as f:
1791+
print(f.read())
1792+
17921793
elif args.command == "build":
17931794
args.func(librarian=args.librarian, repo=args.repo)
17941795
elif args.command == "release-stage":

0 commit comments

Comments
 (0)