scripts: Avoid showing entire file tree diff in CI log
This commit is contained in:
parent
3808ebfdb3
commit
3fce0518bd
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue