31 lines
780 B
Diff
31 lines
780 B
Diff
From a45303be72a307e04379e989f8d9418c0bc2be0b Mon Sep 17 00:00:00 2001
|
|
From: Luke Granger-Brown <git@lukegb.com>
|
|
Date: Sat, 22 Oct 2022 19:33:07 +0100
|
|
Subject: [PATCH 1/4] simply do not run git
|
|
|
|
---
|
|
scripts/version.py | 8 +-------
|
|
1 file changed, 1 insertion(+), 7 deletions(-)
|
|
|
|
diff --git a/scripts/version.py b/scripts/version.py
|
|
index f4dd127f5..b0a27f705 100644
|
|
--- a/scripts/version.py
|
|
+++ b/scripts/version.py
|
|
@@ -61,13 +61,7 @@ class GitVersion:
|
|
}
|
|
|
|
def _exec_git(self, args):
|
|
- cmd = ["git"]
|
|
- cmd.extend(args.split(" "))
|
|
- return (
|
|
- subprocess.check_output(cmd, cwd=self.source_dir, stderr=subprocess.STDOUT)
|
|
- .strip()
|
|
- .decode()
|
|
- )
|
|
+ return ''
|
|
|
|
|
|
class Main(App):
|
|
--
|
|
2.38.1
|
|
|