scripts: Avoid showing entire file tree diff in CI log

This commit is contained in:
Florian Bruhin 2025-10-24 17:00:19 +02:00
parent 3808ebfdb3
commit 3fce0518bd
1 changed files with 1 additions and 0 deletions

View File

@ -54,6 +54,7 @@ def show_commit():
git_args = ['git', 'show']
if utils.ON_CI:
git_args.append("--color")
git_args.append("--no-patch") # shows entire git tree on CI (shallow clone)
subprocess.run(git_args, check=True)