summaryrefslogtreecommitdiffstats
path: root/methods.py
diff options
context:
space:
mode:
authorZorvalt <zorvalt@pm.me>2024-07-08 21:46:23 +0200
committerZorvalt <zorvalt@pm.me>2024-07-08 21:52:07 +0200
commit5a81d2440fb133c84a066b0aba26ea835ccc05f6 (patch)
tree40cc7008f8db766bbc960ffb87676ee59d17845f /methods.py
parent16f98cd7079c2b22248ec358371f17bca355e42e (diff)
downloadredot-engine-5a81d2440fb133c84a066b0aba26ea835ccc05f6.tar.gz
Fix build fetching git_timestamp if git log.showsignature=true
Diffstat (limited to 'methods.py')
-rw-r--r--methods.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/methods.py b/methods.py
index 99c47ca077..b6cae39365 100644
--- a/methods.py
+++ b/methods.py
@@ -268,7 +268,7 @@ def get_version_info(module_version_string="", silent=False):
if os.path.exists(".git"):
try:
version_info["git_timestamp"] = subprocess.check_output(
- ["git", "log", "-1", "--pretty=format:%ct", githash]
+ ["git", "log", "-1", "--pretty=format:%ct", "--no-show-signature", githash]
).decode("utf-8")
except (subprocess.CalledProcessError, OSError):
# `git` not found in PATH.