We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9b9921 commit 343f80fCopy full SHA for 343f80f
1 file changed
.generator/cli.py
@@ -753,8 +753,6 @@ def handle_generate(
753
_copy_readme_to_docs(output, library_id, is_mono_repo)
754
_clean_up_files_after_post_processing(output, library_id, is_mono_repo)
755
756
- with open("/tmp/performance_metrics.log", "r") as f:
757
- print(f.read())
758
except Exception as e:
759
raise ValueError("Generation failed.") from e
760
logger.info("'generate' command executed.")
@@ -1789,6 +1787,9 @@ def handle_release_stage(
1789
1787
output=args.output,
1790
1788
input=args.input,
1791
)
+ with open("/tmp/performance_metrics.log", "r") as f:
+ print(f.read())
1792
+
1793
elif args.command == "build":
1794
args.func(librarian=args.librarian, repo=args.repo)
1795
elif args.command == "release-stage":
0 commit comments