2023-05-05 23:42:06 +00:00
|
|
|
From a93c1256674196fed9575a57a2efb23a54f7d244 Mon Sep 17 00:00:00 2001
|
2022-10-22 19:17:54 +00:00
|
|
|
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(-)
|
|
|
|
|
2022-08-28 20:47:44 +00:00
|
|
|
diff --git a/scripts/version.py b/scripts/version.py
|
2023-05-05 23:42:06 +00:00
|
|
|
index 101224e21..1f9be40ed 100644
|
2022-08-28 20:47:44 +00:00
|
|
|
--- a/scripts/version.py
|
|
|
|
+++ b/scripts/version.py
|
2023-04-16 18:15:28 +00:00
|
|
|
@@ -74,13 +74,7 @@ class GitVersion:
|
2022-08-28 20:47:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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):
|
2022-10-22 19:17:54 +00:00
|
|
|
--
|
2023-05-05 23:42:06 +00:00
|
|
|
2.40.0
|
2022-10-22 19:17:54 +00:00
|
|
|
|