From 3fce0518bdb9986367c59ef74bd76456dba71619 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 24 Oct 2025 17:00:19 +0200 Subject: [PATCH] scripts: Avoid showing entire file tree diff in CI log --- scripts/dev/update_version.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/dev/update_version.py b/scripts/dev/update_version.py index 5e5a633fa..e7fa1fd6f 100644 --- a/scripts/dev/update_version.py +++ b/scripts/dev/update_version.py @@ -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)